目前尝试在外部配置 web.xml 的 AUTH-METHOD 元素(通过在 JBoss 7.1.1 启动期间加载的系统属性),但没有成功。
我认为这可以完成这项工作:
<login-config>
<auth-method>${prest_authMethod}</auth-method>
<realm-name>PREST Authentication</realm-name>
</login-config>
但它在部署期间崩溃:
12:56:01,773 ERROR [org.apache.catalina.startup.ContextConfig] (MSC service thread 1-4) Cannot configure an authenticator for method ${prest_authMethod}
有没有办法从 web.xml 访问系统属性?或者任何其他方式来配置 AUTH-METHOD 与外部配置?谢谢你的帮助。