Я реализовал CORS для моего приложения Spring MVC. В моем Web.xml следующее:
<filter>
<filter-name>simpleCORSFilter</filter-name>
<filter-class>com.tcs.filters.SimpleCORSFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>simpleCORSFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
После консультации CORS с spring -boot и angularjs не работает Я реализовал класс SimpleCORSFilter.java
И теперь я выполнил следующее в файле spring -security.xml:
<http
use-expressions="true" auto-config="false" create-session="stateless"
disable-url-rewriting="true" entry-point-ref="entryPoint"
authentication-manager-ref="authenticationManager">
<bean id="entryPoint" class="com.tcs.web.EntryPoint" />
Но когда он выполняется, он не вызывает класс ниже для "неправильного/неправильного" случая с паролем или случая с правильным паролем.
Итак, конфигурация CORS блокирует вызов, но если я удалю CORS, он вызывает UnauthorizedEntryPoint.
Не могли бы вы сообщить, как правильно это назвать?
public class EntryPoint implements AuthenticationEntryPoint{
@Override
public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException)
throws IOException, ServletException{
// here some custom code about user like values etc
String userid = request.getParameter("userId")
response.sendError(HttpServletResponse.SC_UNAUTHORIZED,
"Unauthorized: Authentication token was either missing or invalid.");
}
}