2

@Autowired サービスで null を取得するという問題を解決できません。これが私のコードです。

私の設定ファイル

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>

    <beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xmlns:context="http://www.springframework.org/schema/context"
      xmlns:tx="http://www.springframework.org/schema/tx"
      xmlns:p="http://www.springframework.org/schema/p"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd 
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx.xsd">

    <tx:annotation-driven transaction-manager="transactionManager"/>
    <context:annotation-config/>
    <context:component-scan base-package="com.vulcan.controller.login" />
    <context:component-scan base-package="com.vulcan.service.login" />
    <context:component-scan base-package="com.vulcan.dao.tenant" /> ........

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
    <context-param>
         <param-name>contextConfigLocation</param-name>
         <param-value>/WEB-INF/applicationContext.xml</param-value>
     </context-param>
    
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <listener>
        <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
    </listener>....

顔-config.xml

<?xml version='1.0' encoding='UTF-8'?>
<faces-config version="2.2"
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd">
    <application>
        <variable-resolver>
            org.springframework.web.jsf.DelegatingVariableResolver
        </variable-resolver>
    </application>
    <application>
        <el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
    </application>........

マイコード

LoginServiceImpl.java

@Service
public class LoginServiceImpl implements LoginService{

    @Autowired
    TenantDao tenantDao;

    @Transactional
    @Override
    public String getTenantIdentifier(String email, String password) { ....

LoginController.java

@Component
@Scope("session")
@Qualifier("login")
public class LoginController  {

    private String email;
    private String password;
    private String tenantId;
    
    @Autowired 
    LoginService loginService;

    public void doLogin() {
        this.tenantId = loginService.getTenantIdentifier(email, password); ..

login.xhtml

<ui:define name="content">
    <h:form id="form">   
        <p:growl id="growl" showDetail="true" life="3000" />  
        <h:panelGrid columns="2" cellpadding="5">  
            <h:outputLabel for="username" value="Username:" />  
            <p:inputText value="#{login.email}" id="username" required="true" label="username"/>
            <h:outputLabel for="password" value="Password:" />  
            <p:inputText value="#{login.password}" id="password" required="true" label="password" type="password" />  
            <f:facet name="footer">  
                <p:commandButton id="loginButton" value="Login" update="growl" action="#{login.doLogin()}"/>  
            </f:facet>  
        </h:panelGrid>  
    </h:form>           
</ui:define>

そこで、Spring を使用してすべての Bean を管理することにしました。これが私の問題を解決するために行ったことです(ただし、まだ結果はありません)

  1. @ManagedBeanLoginController と@ManagedPropertyLoginServiceにJSF を注入しようとしました。invoke 後にヌルポインタを取得しましたdoLogin()。LoginServiceにはnullポインタがあると言われました。

  2. その後、上記のように LoginController に Spring インジェクションを使用しようとしましたが、このエラーが発生しました。

    /login.xhtml @21,109 value="#{login.email}": ターゲットに到達できません。識別子 'login' が null に解決されました

誰でも私を助けることができますか?私はすでにこのフォーラムで多くの提案をフォローして試していますが、何もうまくいきません.

4

1 に答える 1

1

@Qualifier アノテーションを削除し、@Component アノテーションを @Component("login") に編集するだけです。

なんてばかげた間違い...

于 2013-08-10T11:48:56.543 に答える