28

今のところ、永続化されたSpringアプリケーションが動作しています。ただし、Hibernate を JPA と共に使用して、すべてのデータベース アクティビティを実行したいと考えています。エンティティマネージャーを使用してこれを行いたいです。

この問題に関する多くのドキュメントやチュートリアルを読んでいますが、persistence.xml ファイルが必要かどうかについて混乱しています。また、applicationContext.xml ファイルの設定方法についても混乱しています。

Spring + Hibernate + JPA + EntityManager を使用して学習するために見るべき良いサイトを知っている人はいますか?

4

1 に答える 1

12

私はこの数週間、同じ種類のプロジェクトをセットアップしようとしました。

persistence.xml ファイルが必要です。これは META-INF に属します。

永続化のための私のSpring Beanファイルの例を次に示します。

<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"
    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">

<context:property-placeholder location="/WEB-INF/config.properties" />

    <tx:annotation-driven />

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

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

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

<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> 
    <property name="persistenceUnitName" value="whatisayis" />
    <property name="dataSource" ref="dataSource" />
    <property name="jpaVendorAdapter"> 
        <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> 
            <property name="databasePlatform" value="org.hibernate.dialect.MySQL5InnoDBDialect" /> 
            <property name="showSql" value="true" /> 
            <property name="generateDdl" value="true" />
        </bean> 
    </property>
</bean>

<bean id="leDAO" class="com.noisyair.whatisayis.dao.jpa.JpaLearningEntryDAO">
    <property name="jpaTemplate" ref="jpaTemplate" />
</bean> 
<bean id="sampleDAO" class="com.noisyair.whatisayis.dao.jpa.JpaSampleDAO">
    <property name="jpaTemplate" ref="jpaTemplate" />
</bean>
    <bean id="tagDAO" class="com.noisyair.whatisayis.dao.jpa.JpaTagDAO">
    <property name="jpaTemplate" ref="jpaTemplate" />
</bean>
</beans>

また、Maven を使用して、必要な spring3 と休止状態の依存関係を取り込みます。

編集: 学習リソースとして、Gary Mac http://www.apress.com/book/view/9781590599792による「Spring Recipes A Problem-Solution Approach」を強くお勧めします。これは私が今まで読んだ中で最高の技術書の 1 つであり、Spring/JPA/Hibernate を使い始めるのに役立つことは間違いありません。

于 2010-01-14T00:36:15.963 に答える