0
스프링 클라우드를 사용하여 다중 마이크로 서비스를 구축했으며 Spring Cloud Netfix의 Zuul 서버를 사용하여 구현 된 API 게이트웨이를 사용하여 우리의 마이크로 서비스에 대한 요청,이 같은 게이트웨이 설정 :스프링 클라우드를 사용하여 마이크로 서비스를 구축 할 때 응답 헤더에 컨텐츠 길이를 추가하는 방법
application.yml :
server:
port: 8021
ribbon:
ConnectTimeout: 3000
ReadTimeout: 60000
zuul:
ignoredServices: "*"
add-proxy-headers: true
#prefix: /v1
routes:
m_test:
path: /api/testService/**
sensitiveHeaders: "*"
url: http://127.0.0.1:4008/testService/
eureka:
instance:
hostname: gateway
client:
registerWithEureka: true
fetchRegistry: true
serviceUrl:
defaultZone: http://127.0.0.1:8761/eureka/
CorsFilter.java :
@Component
@Order(Ordered.HIGHEST_PRECEDENCE)
public class CorsFilter implements Filter {
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
HttpServletResponse response = (HttpServletResponse) res;
HttpServletRequest request = (HttpServletRequest) req;
response.setHeader("Access-Control-Allow-Origin", "*");
response.setHeader("Access-Control-Allow-Methods", "POST, PUT, GET, OPTIONS, DELETE");
response.setHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Authorization,Content-length");
response.setHeader("Access-Control-Max-Age", "1800");
Map<String, String> map = getHeadersInfo(request);
if (request.getMethod().equalsIgnoreCase("OPTIONS")) {
response.setStatus(HttpServletResponse.SC_OK);
} else {
chain.doFilter(request, response);
}
}
public void init(FilterConfig filterConfig) {
}
public void destroy() {
}
private Map<String, String> getHeadersInfo(HttpServletRequest request) {
Map<String, String> map = new HashMap<>();
Enumeration headerNames = request.getHeaderNames();
while (headerNames.hasMoreElements()) {
String key = (String) headerNames.nextElement();
String value = request.getHeader(key);
map.put(key, value);
}
return map;
}
}
GatewaySystemApplication.ja 버지니아 :
passing through gateway layer response headers
내 요청의 응답 헤더는 을 내용 길이를 그리워하지만 때 내가 직접 컨텐츠 길이 :
@SpringBootApplication
@EnableZuulProxy
@EnableEurekaClient
public class GatewaySystemApplication {
public static void main(String[] args) throws Exception {
//SpringApplication.run(GatewaySystemApplication.class, args);
new SpringApplicationBuilder(GatewaySystemApplication.class).web(true).run(args);
}
}
브라우저 응답 헤더는 다음과 같이 있습니다 백엔드 서비스를 호출합니다. directly response headers
이 'String contentType = Files.probeContentType (Paths.get (filepath))'을 사용하여 contentType을 가져오고 브라우저 응답 content-type이 다음과 같이 변경됩니다. 'Content-Type \t application/zip; = UTF-8 '이지만 응답 헤더에는'content-length '가 없습니다. 추신 : 답변 해 주셔서 감사합니다. – jelen