IntelliJ告诉我它
无法解决安全角色
我很确定我必须将角色放在另一个文件以及web.xml中,但我找不到太多关于此的信息。也许是hboss-web.xml?
<security-constraint>
<web-resource-collection>
<web-resource-name>Secure Pages</web-resource-name>
<description/>
<url-pattern>/u/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>USER</role-name>
<role-name>ADMIN</role-name>
</auth-constraint>
</security-constraint>
我是关于intelliJ的新手,所以也许我误解了一些东西。
答案 0 :(得分:4)
您需要声明在web.xml中引用的安全角色(如果使用基于EAR的部署,则声明为application.xml):
try