在我之前的项目中,我们使用jboss 7作为应用程序服务器,而我的应用程序在jboss-web.xml中使用了如下代码。
<jboss-web>
<security-domain>my-form-auth</security-domain>
<context-root>webapps</context-root>
<valve>
<class-name>com.session.MyAuthenticaor</class-name>
</valve>
</jboss-web>
它工作正常。但目前我们已升级到wildfly 8.2.1并且没有调用阀门进行任何请求。阀门用于自定义身份验证。阀门代码如下所示。
package com.session;
import java.io.IOException;
import org.apache.catalina.authenticator.FormAuthenticator;
import org.apache.catalina.connector.Request;
import org.apache.catalina.connector.Response;
import org.apache.catalina.deploy.LoginConfig;
public class MyAuthenticaor extends FormAuthenticator{
public boolean authenticate(Request request, Response response,LoginConfig config) throws IOException {
//code for authentication
}
}
请帮我解决这个问题。
答案 0 :(得分:0)
您必须在web子系统下的standalone.xml文件中配置阀门。如下
<valve name="<valve name>" module="<your valve module name>" class-name="com.session.MyAuthenticaor"></valve>