gpt4 book ai didi

java - 将 Hibernate 添加到 Spring Boot 项目

转载 作者:行者123 更新时间:2023-11-29 06:23:35 24 4
gpt4 key购买 nike

我有一个简单的 Spring Boot 项目(这里已经提到:Replace hsqldb with MySQL)

我想配置 Hibernate 来处理这个项目。在另一个项目中,我曾经像这样获取 EntityManager:

@PersistenceContext(unitName = "orm-unit")
private EntityManager em;

但我也有需要配置的 persistence.xml。

在 Spring Boot 中,我什至不知道在哪里放置任何配置文件。如何让 Hibernate 在这种情况下工作?

最佳答案

阅读 Spring Boot 文档。翻看31. Working with SQL databases 你会看到你需要配置一个数据源。

DataSource configuration is controlled by external configuration properties in spring.datasource.*. For example, you might declare the following section in application.properties:

spring.datasource.url=jdbc:mysql://localhost/test
spring.datasource.username=dbuser
spring.datasource.password=dbpass
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

您还可以在实现 EnvironmentAware 的 @Configuration 映射类中配置数据源。

JHipster 使用 HikariCP 生成一个很酷的数据库配置。你可以看看the sample here .

对于 Hibernate,您可以 configure JPA properties .您可以显式设置 spring.jpa.hibernate.ddl-auto,标准 Hibernate 属性值为 none、validate、update、create、create-drop。 Spring Boot 根据它是否认为您的数据库是嵌入式的(默认创建-删除)或非嵌入式(默认无)为您选择一个默认值。

例如,要创建和删除表,您可以将以下内容添加到您的 application.properties。

spring.jpa.hibernate.ddl-auto=create-drop

对于 EntityManager,当您启用自动配置时,您将触发 JpaBaseConfiguration这将为您创建一个实体管理器。

您还可以使用自定义的 EntityManagerFactory。

To take full control of the configuration of the EntityManagerFactory, you need to add a @Bean named ‘entityManagerFactory’. Spring Boot auto-configuration switches off its entity manager based on the presence of a bean of that type.

顺便说一句,您还可以使用传统的 persistence.xml

关于java - 将 Hibernate 添加到 Spring Boot 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32227928/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com