소스 검색

跨域问题修复

macro 5 년 전
부모
커밋
d11be8cc0e
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      mall-security/src/main/java/com/macro/mall/security/component/RestAuthenticationEntryPoint.java

+ 2 - 0
mall-security/src/main/java/com/macro/mall/security/component/RestAuthenticationEntryPoint.java

@@ -18,6 +18,8 @@ import java.io.IOException;
 public class RestAuthenticationEntryPoint implements AuthenticationEntryPoint {
     @Override
     public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException {
+        response.setHeader("Access-Control-Allow-Origin", "*");
+        response.setHeader("Cache-Control","no-cache");
         response.setCharacterEncoding("UTF-8");
         response.setContentType("application/json");
         response.getWriter().println(JSONUtil.parse(CommonResult.unauthorized(authException.getMessage())));