0

ログイン プロセスを認証するために jboss-seam-2.2.0.GA オーセンティケーター クラスを使用しています。ユーザー名とパスワードを入力してページを送信すると、ログに次のエラー メッセージが表示されます。

application E javax.el.PropertyNotFoundException: /login.xhtml @27,76 action="#{authenticator.login()}": ターゲット到達不能、識別子 'authenticator' が null に解決されました
 javax.faces.el.E​​valuationException: javax.el.PropertyNotFoundException: /login.xhtml @27,76 action="#{authenticator.login()}": ターゲット到達不能、識別子 'authenticator' が null に解決されました
 javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:101) で
 com.sun.faces.application.ActionListenerImpl.processAction (ActionListenerImpl.java:102) で
 javax.faces.component.UICommand.broadcast (UICommand.java:387) で

以下はコードです:

<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://jboss.com/products/seam/taglib"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich" template="layout/noMenuTemplate.xhtml">
<ui:define name="body">
    <div id="content">
                <h:form id="loginForm">
        <rich:panel>
            <f:facet name="header">Login</f:facet>
            <h:messages />
<div class="dialog"><h:panelGrid columns="2" rowClasses="prop"
                columnClasses="name,value">
                <h:outputLabel for="username">Username</h:outputLabel>
                <h:inputText id="username" value="#{credentials.username}"
                    style="width: 150px;" />
                <h:outputLabel for="password">Password</h:outputLabel>
                <h:inputSecret id="password" value="#{credentials.password}"
                    style="width: 150px;" />
            </h:panelGrid></div>

            <div class="actionButtons"><h:commandButton id="submit"
                styleClass="button" value="Login" action="#{authenticator.login()}" /></div>
        </rich:panel>
        </h:form>
           </div>
</ui:define>
</ui:composition>

Authenticator.java

@Name("authenticator")
@AutoCreate
public class Authenticator {    
    @Logger Log log;
    @In Identity identity;
    @In Credentials credentials;
    @In Session hibernateSession;

    public Authenticator() {}

    public void login() throws IOException {
        log.debug("calling login method ............... ");

        HttpServletRequest request = (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest();

        StringBuffer location = new StringBuffer(request.getContextPath());
        location.append("/j_security_check?j_username=");
        location.append((credentials.getUsername() != null) ? credentials.getUsername() : "");
        location.append("&j_password=");
        location.append((credentials.getPassword() != null) ? credentials.getPassword() : "");

        log.debug("LOCATION : " + location.toString());

        HttpServletResponse response = (HttpServletResponse) FacesContext.getCurrentInstance().getExternalContext().getResponse();
        response.sendRedirect(response.encodeRedirectURL(location.toString()));      
    }
}
4

1 に答える 1

0

Authenticatorクラスが正しく実装されているようです。ログをさらに検索して、ログが作成されない理由を調べます。

また、components.xmlから関連するセクションを投稿することをお勧めします。次のようなものにする必要があります:

<security:identity authenticate-method="#{authenticator.login}"/>
于 2012-05-03T12:36:15.553 に答える