You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.teaching.backend.component;
|
|
|
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
import com.teaching.backend.common.CommonResult;
|
|
|
|
import org.springframework.security.core.AuthenticationException;
|
|
|
|
import org.springframework.security.web.AuthenticationEntryPoint;
|
|
|
|
|
|
|
|
import javax.servlet.ServletException;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 自定义未登录或者token失效时的返回结果
|
|
|
|
* Created by macro on 2018/5/14.
|
|
|
|
*/
|
|
|
|
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())));
|
|
|
|
response.getWriter().flush();
|
|
|
|
}
|
|
|
|
}
|