|
|
package com.tianbo.warehouse.security.handel;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import org.springframework.security.core.AuthenticationException;
|
|
|
import org.springframework.security.web.AuthenticationEntryPoint;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
/**实现AuthenticationEntryPoint接口
|
|
|
import javax.servlet.ServletException;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import java.io.IOException;
|
|
|
import java.io.PrintWriter;
|
|
|
|
|
|
/**
|
|
|
*实现AuthenticationEntryPoint接口
|
|
|
* AuthenticationEntryPoint 用来解决匿名用户访问无权限资源时的异常
|
|
|
* AccessDeineHandler 用来解决认证过的用户访问无权限资源时的异常
|
|
|
*/
|
|
|
public class MyAuthenticationEntryPoint {
|
|
|
// response.setCharacterEncoding("utf-8");
|
|
|
// response.setContentType("text/javascript;charset=utf-8");
|
|
|
// response.getWriter().print(JSONObject.toJSONString(RestMsg.error("没有访问权限!")));
|
|
|
@Component
|
|
|
public class MyAuthenticationEntryPoint implements AuthenticationEntryPoint{
|
|
|
|
|
|
@Override
|
|
|
public void commence(HttpServletRequest request,
|
|
|
HttpServletResponse response,
|
|
|
AuthenticationException authException) throws IOException, ServletException{
|
|
|
// response.setContentType("application/json;charset=utf-8");
|
|
|
// PrintWriter out = response.getWriter();
|
|
|
// StringBuffer sb = new StringBuffer();
|
|
|
// sb.append("{\"status\":\"error\",\"msg\":\"");
|
|
|
//
|
|
|
// sb.append("未登陆!");
|
|
|
//
|
|
|
// sb.append("\"}");
|
|
|
// out.write(sb.toString());
|
|
|
// out.flush();
|
|
|
// out.close();
|
|
|
|
|
|
response.setCharacterEncoding("utf-8");
|
|
|
response.setContentType("application/json;charset=utf-8");
|
|
|
response.sendError(401,"未登陆");
|
|
|
// response.getWriter().print(JSONObject.toJSONString(Status.error("没有访问权限!")));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
} |
...
|
...
|
|