使用Tomcat的静态文件无法使用基本身份验证

时间:2019-09-30 04:59:33

标签: tomcat

我在webapps文件夹下有一个spring-boot.war和static_html_files。

我想对两者都应用基本身份验证。

当前,登录窗口仅针对 spring-boot.war 服务器弹出,但不弹出用于存放我的静态文件的static_html_files文件夹

tomcat-user.xml

    <role rolename="tw_realtor"/>
    <role rolename="role1"/>
    <user username="AAAAA" password="BBBBB" roles="tw_realtor"/>

web.xml

<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>

0 个答案:

没有答案