30 lines
959 B
Java
30 lines
959 B
Java
package com.codesdream.ase.component.auth;
|
|
|
|
import com.codesdream.ase.component.api.QuickJSONRespond;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.security.core.AuthenticationException;
|
|
import org.springframework.security.web.AuthenticationEntryPoint;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import java.io.IOException;
|
|
|
|
// 匿名用户访问无权限资源
|
|
@Slf4j
|
|
@Component
|
|
public class ASEAuthenticationEntryPoint implements AuthenticationEntryPoint {
|
|
@Resource
|
|
private QuickJSONRespond quickJSONRespond;
|
|
|
|
@Override
|
|
public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException)
|
|
throws IOException {
|
|
|
|
// 对匿名用户返回401
|
|
response.getWriter().print(quickJSONRespond.getRespond401(null));
|
|
|
|
}
|
|
}
|