我有一個小應用程序,我需要實現tomcat認證。在挖掘互聯網後,我發現Realm是解決方案。另外我得到了如何配置我的tomcat-users.xml,server.xml和web.xml。 但它仍然無法正常工作。使用基本的tomcat認證
我在web.xml中
<security-constraint>
<web-resource-collection>
<web-resource-name>hp</web-resource-name>
<url-pattern>/pages/bill.jsp</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>Admin</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>>
<realm-name>default</realm-name>>
</login-config>
在登錄時,配置添加該代碼,我得到元素「登錄,配置」不能有個性[兒童],因爲該類型的內容類型 爲元素 - 只要。 可能是什麼問題?