我在webapps文件夹下有一个spring-boot.war和static_html_files。
我想对两者都应用基本身份验证。
当前,登录窗口仅针对 spring-boot.war 服务器弹出,但不弹出用于存放我的静态文件的static_html_files文件夹
<role rolename="tw_realtor"/>
<role rolename="role1"/>
<user username="AAAAA" password="BBBBB" roles="tw_realtor"/>
<security-constraint>
<web-resource-collection>
<web-resource-name/>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>tw_realtor</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>Hudson</realm-name>
</login-config>