4

JSFアプリケーションでSpringBeanを使用して、SpringにJSFマネージドBeanにサービス/リポジトリを注入させたい。

インターネットで多くの解決策を見つけましたが、機能したのは次のコード行だけでした。

ApplicationContext ctx = FacesContextUtils.getWebApplicationContext(FacesContext.getCurrentInstance());
albumRepository = (AlbumRepository) ctx.getBean("albumRepository");

albumRepositoryは、私が注入しようとしているSpringBeanです。

問題はそれが本当に足りないということです、私はすべての注射のために、すべてのクラスでこれをしたくありません。「@Inject」のような注釈を使用したいと思います。

Googleで回答を検索したところ、faces-config.xmlの次の構成を使用してJSFとSpringを統合する必要があることがわかりました。

<application>
    <el-resolver>
        org.springframework.web.jsf.el.SpringBeanFacesELResolver
    </el-resolver>
</application>

そうすれば、「@ ManagedProperty(value = "#{albumRepository}")」というアノテーションを付けてSpringBeanを使用できるようになります。試してみましたが、「マネージドBeanのプロパティalbumRepositoryが存在しません」というエラーが表示されます。

Googleでもう一度検索すると、Springアノテーションを使用してインジェクションを実行できることがわかりました。必要なのは、管理対象BeanがapplicationContext.xmlにあるパッケージを登録することだけです。私はそれを行いましたが、Springは私のアノテーションを無視します(@Injectと@Autowired、両方を試しました)。

これらすべての失敗の後、私はJSFアノテーション(@ManagedBeanと@ViewScoped)の使用をやめようとしましたが、代わりにSpringアノテーション(@Controllerと@Scope)を使用しました。現在、JSFはBeanを認識していません。

私は何が間違っているのですか?

編集:My ApplicationContext.xml

<context:annotation-config/>
        <jpa:repositories base-package="com.ae.repository" />
        <context:component-scan base-package="com.ae.client.web, com.ae.service" />

        <!-- Data Source -->
        <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
            <property name="driverClassName"><value>com.mysql.jdbc.Driver</value></property>
            <property name="url"><value>jdbc:mysql://localhost:3306/academia</value></property>
            <property name="username"><value>root</value></property>
            <property name="password"><value>root</value></property>
        </bean>

        <bean id="jpaAdapter" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
            <property name="database" value="MYSQL" />
            <property name="showSql" value="true" />
        </bean>

        <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
            <property name="dataSource" ref="dataSource" />
            <property name="jpaVendorAdapter" ref="jpaAdapter" />
            <property name="persistenceXmlLocation" value="/META-INF/persistence-web.xml"/>
        </bean>

        <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
            <property name="entityManagerFactory" ref="entityManagerFactory" />
        </bean>

編集:私のweb.xml

<!-- Spring -->
    <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>

    <!-- JSF -->
    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</param-value>
    </context-param>

    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>

    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>

    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>server</param-value>
    </context-param>

    <welcome-file-list>
        <welcome-file>faces/index.xhtml</welcome-file>
    </welcome-file-list>

    <!-- Primefaces -->
    <filter>
        <filter-name>PrimeFaces FileUpload Filter</filter-name>
        <filter-class>org.primefaces.webapp.filter.FileUploadFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>PrimeFaces FileUpload Filter</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
4

2 に答える 2

1

あなたのweb.xmlにはこのようなコンテキストパラメータがありますか?

<context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:/*Context.xml</param-value>
    </context-param> 

また、web.xmlで春についてのリスナーを送信できますか

于 2012-09-20T15:00:16.163 に答える
0

SpringIOCコンテナですべてのBeanを管理する場合。@ Component、@ Named、またはjavax.annotation.ManagedBeanアノテーションのいずれかを使用し、@Autowiredまたは@Injectを使用してそれらを注入できます。それらのいずれにもSpringの@Scopeを使用することを忘れないでください。

ドキュメントを参照してください

JSFIOCコンテナをSpringIOCコンテナと一緒に使用する場合は、@ManagedPropertyを使用してSpringBeanをJSFBeanに注入できます。

関連項目:

于 2012-09-20T17:59:54.087 に答える