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>