19 lines
669 B
Java
19 lines
669 B
Java
package cn.van.business.util;
|
|
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
import jakarta.servlet.http.HttpServletResponse;
|
|
import org.springframework.security.core.AuthenticationException;
|
|
import org.springframework.security.web.AuthenticationEntryPoint;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.io.IOException;
|
|
|
|
@Component
|
|
public class AuthEntryPoint implements AuthenticationEntryPoint {
|
|
|
|
@Override
|
|
public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException {
|
|
response.sendError(HttpServletResponse.SC_UNAUTHORIZED, "需要登录认证");
|
|
}
|
|
}
|