0

私の目標は、applicationContext.xml ファイルから EntityManagerFactory をインスタンス化して、SQL データベースに登録されているすべての投稿を取得することです。主なファイルの内容は次のとおりです。

applicationContext.xml

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

    <!-- Properties files linkers -->

    <context:property-placeholder location="/WEB-INF/resources/database/jdbc.properties"/>
    <context:property-placeholder location="/WEB-INF/resources/database/hibernate.properties"/>

    <!-- Config database - initialization -->

    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="${jdbc.driverClassName}" />
        <property name="url" value="${jdbc.url}" />
        <property name="username" value="${jdbc.username}" />
        <property name="password" value="${jdbc.password}" />
    </bean>

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

    <!-- Three main layers definition -->

    <context:annotation-config />
    <context:component-scan base-package="com.zone42"/>

    <!-- Transaction sub-system initialization -->

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

    <tx:annotation-driven transaction-manager="transactionManager" />

</beans>

(WEB-INF/classes/)persistence.xml

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
    <persistence-unit name="post-unit" transaction-type="RESOURCE_LOCAL">
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <class>com.zone42.model.Post</class>
        <exclude-unlisted-classes>true</exclude-unlisted-classes>
    </persistence-unit>
</persistence>

PostDAO.java

public class PostDAO extends GenericDAOEntity<Post> implements IPostDAO
{

}

GenericDAOEntity.java

@Transactional
public class GenericDAOEntity<T> implements IGenericDAO<T>
{
    /**
     * Properties
     */

    @Autowired
    @PersistenceContext(unitName="post-unit")
    private EntityManagerFactory entityManagerFactory/* = Persistence.createEntityManagerFactory(persistence_unit_name)*/;

    //Get all posts

    @SuppressWarnings("unchecked")
    public List<T> findAll(Class<T> obj) {
        EntityManager entityManager = this.entityManagerFactory.createEntityManager();
        Query query = entityManager.createQuery("from " + obj.getSimpleName());
        return (query.getResultList());
    }

    /**
     * Accessors
     */

    public EntityManagerFactory getEntityManagerFactory() {
        return entityManagerFactory;
    }

    @PersistenceContext(unitName="post-unit")
    public void setEntityManagerFactory(EntityManagerFactory entityManagerFactory) {
        this.entityManagerFactory = entityManagerFactory;
    }   
}

いくつかの構成の組み合わせを試しましたが、成功しませんでした。は、entityfactory インスタンスから EntityManager のインスタンスを作成するときにメソッドから取得されますNullPointerExceptionfindAll設定に問題があると思います。クラスで new 演算子を直接使用して EntityManagerFactory をインスタンス化すると、コードが機能することを正確に示したいと思います。ここで、appicationContext.xml ファイルの xml を使用する別の方法を選択して、ファクトリを割り当てたいだけです。誰でも私を助けることができますか?前もって感謝します。

4

1 に答える 1

0

フィールド/セッターをマークするか@Autowired、XML で参照を明示的に接続する必要があります。

<bean class="PostDAO">
    <property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
于 2013-01-17T17:56:40.333 に答える