我正在将WildFly 15 JEE应用程序迁移到Thorntail 2.4.0。
在WildFly中,我可以使用bin / add-user.bat实用程序创建用户,为他们分配角色(在本例中为Admin)。
在web.xml中,将限制定义为仅允许那些用户访问。
<!-- Security -->
<security-constraint>
<web-resource-collection>
<web-resource-name>Restricted Access</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
</security-constraint>
如何使用Thorntail创建相似的用户?