好的,所以我以前在经典web.xml中使用过这种技术,但是现在我无法使用WebApplicationInitializer。
我的WebApplicationInitializer包含以下代码:
HttpConstraintElement constraint = new HttpConstraintElement(
TransportGuarantee.NONE,
new String[]{"sponsorUsers"});
ServletSecurityElement servletSecurity =
new ServletSecurityElement(constraint);
dispatcher.setServletSecurity(servletSecurity);
我正在尝试为servlet中的任何资源请求的任何http方法要求基本身份验证(用户名+密码)。 我得到的全部是403 - 没有提示用户名。 我怀疑我需要将auth方法设置为BASIC,就像在xml中一样:
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>User Auth</realm-name>
</login-config>
但是没有看到Java类中的等价物。有帮助吗?谢谢!
答案 0 :(得分:4)
WebApplicationInitializer
基本上是Servlet 3.0 ServletContainerInitializer
的Spring扩展。
ServletContainerInitializer
或ServletContext
更具体的一些事情是你不能做的,其中一个是配置一些安全组件,login-config
。
相反,您可以使用设置为ServletContainerInitializer
的属性web.xml
同时拥有metadata-complete
和false
。例如,
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
metadata-complete="false" version="3.0">
然后在其中添加<login-config>
元素。