如何使用 Spring/Hibernate 创建数据库?

Posted

技术标签:

【中文标题】如何使用 Spring/Hibernate 创建数据库?【英文标题】:How do I create a database with Spring/Hibernate? 【发布时间】:2017-02-11 10:04:35 【问题描述】:

首先:是的,我已经搜索过以前的问题。不幸的是,没有一个答案有效。

我创建了一个实体类Product、一个存储库类ProductRepository和一个主类Application

您可以在下面找到代码:

应用

@SpringBootApplication
public class Application 

    public static void main (String[] args) 
        ConfigurableApplicationContext ctx = SpringApplication.run(Application.class, args);

        ProductRepository repo = ctx.getBean(ProductRepository.class);
        Product product = new Product();
        product.setDescription("HDD");
        repo.save(product);
    

产品

@Entity
@Table(name="Products")
public class Product 
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    private int product_id;
    private String description;

    public int getProduct_id() 
        return product_id;
    
    public void setProduct_id(int product_id) 
        this.product_id = product_id;
    
    public String getDescription() 
        return description;
    
    public void setDescription(String description) 
        this.description = description;
    

产品存储库

@Repository
public interface ProductRepository extends CrudRepository<Product, Integer> 


application.properties 文件

文件如下所示:

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:8080/entmob
spring.datasource.username=entmob
spring.datasource.password=*******
spring.jpa.hibernate.naming_strategy=org.hibernate.cfg.EJB3NamingStrategy
spring.jpa.hibernate.dialect=org.hibernate.dialect.MySQLDialect
spring.jpa.hibernate.show_sql=true
spring.jpa.hibernate.hbm2ddl.auto=create

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0   http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.springframework</groupId>
    <artifactId>gs-relational-data-access</artifactId>
    <version>0.1.0</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.1.RELEASE</version>
    </parent>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>[5,]</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

编译产生零错误。但是,数据库没有在我的本地主机中创建。我正在使用 XAMPP 来管理我的本地主机。

有人可以提供任何帮助吗?非常感谢!

【问题讨论】:

你试过Spring Boot Data Jpa的官方例子吗:spring.io/guides/gs/accessing-data-jpa 我会首先尝试从 pom.xml 中删除 H2 依赖项,然后尝试 .我怀疑你的数据库是嵌入式的。 当springboot找到h2依赖时,它会认为它是一个带有嵌入式数据库的webapp,并且会忽略你的mysql配置。 你完全正确!固定! @Sergey Brunov 。完成谢谢 【参考方案1】:

&lt;property name="hibernate.hbm2ddl.auto"&gt;create&lt;/property&gt; 将创建表。但它不会创建数据库。更改连接 url 以生成数据库,如下所示。

jdbc:mysql://localhost:8080/entmob?createDatabaseIfNotExist=true

在 pom.xml 和上面的连接 url 中使用下面的连接器。

<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
  <version>5.1.38</version> <!-- or 5.1.28 / 5.1.30 -->
</dependency>

【讨论】:

谢谢,但我已经尝试过了。不幸的是,它不起作用! 编辑:newDB 已创建!我通过 maven 导入了 SQL 连接器,它可以工作。 我会,但我正在尝试通过 application.properties 文件使用 Hibernate 和 Spring 来实现。如果您指的是 sql 连接器依赖项,它包含在 pom.xml没关系,也许问题在于连接器依赖性。所以尝试直接在你的spring hibernate项目的类路径中添加连接器jar,而不是pom.xml。让我们看看它是否有效? 仍然没有区别。我会将我的 pom.xml 添加到我的问题中【参考方案2】:

这里是解决方案。正如我在评论部分建议的那样:

我会首先尝试从 pom.xml 中删除 H2 依赖项,然后 尝试 。我怀疑你的数据库是嵌入式的。

当 springboot 找到 h2 依赖时,它会将其视为 带有嵌入式数据库的 webapp,将忽略您的 mysql 配置

【讨论】:

这很有趣。您能否提供对文档的适当参考? 我不记得这是在哪里引用的,但显然嵌入式配置优先于非嵌入式。个人认为,通过在配置(.properties 文件)中手动指定我们选择的第二个(非嵌入式)db 会覆盖 SB 的默认行为,但它显然没有......

以上是关于如何使用 Spring/Hibernate 创建数据库?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Hibernate 注释创建允许 NULL 值的唯一约束?

Spring Hibernate 关系映射

Spring Hibernate SessionFactory

在 Spring Hibernate java 项目中使用“Envers”审计表

Java Spring Hibernate没有根据我的实体创建表[重复]

日期被覆盖(Spring/Hibernate)