Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 JBoss 7 中实现自定义登录模块。根据我能够挖掘的所有文档,我需要修改服务器配置来定义我的自定义登录模块。有没有办法在每个 WAR 的基础上定义一个自定义登录模块,而不修改服务器的standalone.xml / domain.xml?
看起来这在 JBoss 6 及更早版本中是可能的,但我在 JBOSSSAS 7 中需要它。
您可以在您的战争中定义登录模块而不会出现任何问题。
您应该将配置添加到 jboss-web.xml
例如作为
<jboss-web> <security-domain>SPNEGO</security-domain> <valve> <class-name>org.jboss.security.negotiation.NegotiationAuthenticator</class-name> </valve> </jboss-web>
有关更多详细信息,请参阅安全域文档和子系统文档