当前位置: 首页 > 面试题库 >

Spring + Hibernate + JPA [关闭]

高海阳
2023-03-14
问题内容

按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实,参考或专业知识的支持,但是这个问题可能会引起辩论,争论,民意调查或扩展讨论。如果您认为此问题可以解决并且可以重新提出,请访问帮助中心以获取指导。

8年前关闭。

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

我已经阅读了许多有关此问题的文档和教程,对于是否需要persistence.xml文件感到困惑。另外,我也对如何设置applicationContext.xml文件感到困惑。

有人知道要使用EntityManager学习Spring + Hibernate + JPA +的好站点吗?


问题答案:

我刚刚花了最后几个星期尝试建立相同类型的项目。

您确实需要一个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撰写的“ Spring Recipes A Problem-Solution
Approach”(http://www.apress.com/book/view/9781590599792)。这是我读过的最好的技术书籍之一,它肯定会帮助您使用Spring
/ JPA / Hibernate入门和运行。



 类似资料:
  • 我不打算修改对象。我只需要他们显示在UI上。你能给我一个解决办法吗?我使用的是Spring boot+hibernate JPA+AngularJS+PostgreSQL。 (附注:我不能让entityManager打开。如果让它打开,我会出现连接限制超出错误。这也不是最好的方法)

  • 大家好,正在使用Spring+JPA/Hibernate+Maven并尝试从DB获取记录。所以当我朗姆酒时,我的应用程序会出现如下错误 这是一段代码

  • 我需要基于参数从实体中检索或不检索一些关联。在下面的示例中,只有在通过api传递参数时,我才需要获取记录列表。你能推荐一种使用hibernate/spring数据实现这一点的方法吗?我正在寻找最干净、最像spring数据的方法。 我的存储库是空的: 在我的服务中,我做了如下事情: 但我想做的是:

  • 我已经为我的spring boot应用程序创建了所有模型,并根据业务逻辑成功地指定了它们之间的关系。在我的属性文件中,我将hibernate auto-ddl选项设置为create以根据实体之间的关系生成所有表。我也在使用liquibase进行数据库迁移。 但是,application-prod.yml中合适的方言应该是什么呢?我正在生产中使用MYSQL。我在这里使用的当前方言是“org.hibe

  • 问题内容: 我想知道是否有人对这些框架的JPA2.0实现有经验?特别是与带有EclipseLink支持的Spring3.x一起使用。 您是否使用任何这些框架和JPA2.0进行生产?有什么 严重的 问题吗? 问题答案: 恕我直言,总是尽可能使用标准的api。您自己的示例完美地展示了这一点。当一个提供商无法按预期工作时,您可以在两个提供商上尝试使用相同的代码。切换到任何本机API都会阻止您执行此操作。

  • Spring Data JPA不是一个JPA实现,它是对数据库数据访问的抽象。我不能理解这种表达方式与JPA的实现(比如Hibernate)进行比较。在使用Spring Data JPA时,要使用CRUD操作,必须从CrudRepository接口进行扩展。但是没有Hibernate,Spring Data JPA无法独立工作,因为它无法将java对象转换为实体。但是!Hibernate还可以执行