Spring + Hibernate + JPA [关闭]

Posted

技术标签:

【中文标题】Spring + Hibernate + JPA [关闭]【英文标题】:Spring + Hibernate + JPA [closed] 【发布时间】:2011-01-04 21:46:39 【问题描述】:

到目前为止,我有一个具有持久性的 Spring 应用程序。但是现在我想使用 Hibernate 和 JPA 来完成我所有的数据库活动。我想使用实体管理器来做到这一点。

我已经阅读了很多关于这个问题的文档和教程,我一直对是否需要persistence.xml 文件感到困惑。我也对如何设置我的 applicationContext.xml 文件感到困惑。

有没有人知道一个可以学习 Spring + Hibernate + JPA + 使用 EntityManager 的好网站?

【问题讨论】:

为什么这个问题被关闭了? “我也一直对如何设置我的 applicationContext.xml 文件感到困惑。” - 这个问题还不够清楚和具体吗?来吧,停止关闭有用的问题。 我同意“有福的极客”。这是一个非常受欢迎的问题,我也在寻找这个答案。不要关闭有帮助的问题。如果它是关闭此类问题的脚本,请更正您的代码。 这是一个使用 Maven 管理依赖关系的学习 Spring Jpa 和 Hibernate 的在线课程:pluralsight.com/training/Courses/TableOfContents/… 【参考方案1】:

我最近几周一直在尝试建立相同类型的项目。

你确实需要一个 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 和 hibernate 依赖项。

编辑:对于学习资源,我强烈推荐 Gary Mac http://www.apress.com/book/view/9781590599792 的“Spring Recipes A Problem-Solution Approach”。这是我读过的最好的技术书籍之一,它肯定会帮助你开始使用 Spring/JPA/Hibernate。

【讨论】:

《春季食谱》+1,有史以来最好的科技书籍之一。 谢谢你,帮了大忙 谢谢,帮了大忙! 另外,是否有可能以某种方式从配置文件中自动加载多个(1 到 n 个不同的)数据源? 从 Spring 3.2 开始,您不再需要额外的 persistence.xml 文件。

以上是关于Spring + Hibernate + JPA [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

JPA---Spring-data-JPA---Hibernate

Spring + Hibernate + JPA [关闭]

Spring Hibernate JPA 联表查询

Spring Hibernate JPA 联表查询 复杂查询

Spring、Spring Security、JPA、MySQL、Hibernate 配置

Spring+Hibernate+JPA的多数据库