...
|
...
|
@@ -10,6 +10,7 @@ import com.example.gateway.util.JsonToBean; |
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.reactivestreams.Publisher;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.cloud.gateway.filter.GatewayFilterChain;
|
|
|
import org.springframework.cloud.gateway.filter.GlobalFilter;
|
|
|
import org.springframework.core.Ordered;
|
...
|
...
|
@@ -43,6 +44,12 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
|
@Autowired
|
|
|
private StringRedisTemplate stringRedisTemplate;
|
|
|
|
|
|
@Value("${host.system-info}")
|
|
|
private String systemInfo;
|
|
|
|
|
|
//默认部署操作系统名称
|
|
|
private static final String DEFAULT_SYSTEM="linux";
|
|
|
|
|
|
private static AntPathMatcher pathMatcher = new AntPathMatcher();
|
|
|
|
|
|
@Override
|
...
|
...
|
@@ -87,8 +94,15 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
|
// }
|
|
|
// };
|
|
|
|
|
|
ServerHttpResponseDecorator decoratedResponseGBK= new GBKServerHttpResponseDecorator(response);
|
|
|
return chain.filter(exchange.mutate().response(decoratedResponseGBK).build());
|
|
|
ServerHttpResponseDecorator decoratedResponse= new UTF8ServerHttpResponseDecorator(response);
|
|
|
if (DEFAULT_SYSTEM.equals(systemInfo)){
|
|
|
decoratedResponse= new UTF8ServerHttpResponseDecorator(response);
|
|
|
}else {
|
|
|
decoratedResponse= new GBKServerHttpResponseDecorator(response);
|
|
|
}
|
|
|
//
|
|
|
|
|
|
return chain.filter(exchange.mutate().response(decoratedResponse).build());
|
|
|
//
|
|
|
// return chain.filter(exchange);
|
|
|
}
|
...
|
...
|
@@ -131,6 +145,11 @@ public class WrapperResponseGlobalFilter implements GlobalFilter, Ordered { |
|
|
return false;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 白名单接口访问判定
|
|
|
* @param request
|
|
|
* @return
|
|
|
*/
|
|
|
public boolean anonymousUrlFilter(ServerHttpRequest request){
|
|
|
//内部服务接口,不允许外部访问
|
|
|
if(pathMatcher.match("/**/anonymous/**", request.getPath().toString())) {
|
...
|
...
|
|