无法获取 Spring boot 以自动创建数据库模式

2022-08-31 09:30:56

我无法让 Spring boot 在启动时自动加载数据库架构。

这是我的应用程序.属性:

spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=test
spring.datasource.password=
spring.datasource.driverClassName = com.mysql.jdbc.Driver

spring.jpa.database = MYSQL

spring.jpa.show-sql = true

spring.jpa.hibernate.ddl-auto = create
spring.jpa.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
spring.jpa.hibernate.naming_strategy = org.hibernate.cfg.ImprovedNamingStrategy

这是我的应用程序.java:

@EnableAutoConfiguration
@ComponentScan
public class Application {
    public static void main(final String[] args){
        SpringApplication.run(Application.class, args);
    }
}

下面是一个示例实体:

@Entity
@Table(name = "survey")
public class Survey implements Serializable {

    private Long _id;

    private String _name;

    private List<Question> _questions;

    /**
     * @return survey's id.
     */
    @Id
    @GeneratedValue(strategy = IDENTITY)
    @Column(name = "survey_id", unique = true, nullable = false)
    public Long getId() {
        return _id;
    }

    /**
     * @return the survey name.
     */
    @Column(name = "name")
    public String getName() {
        return _name;
    }


    /**
     * @return a list of survey questions.
     */
    @OneToMany(mappedBy = "survey")
    @OrderBy("id")
    public List<Question> getQuestions() {
        return _questions;
    }

    /**
     * @param id the id to set to.
     */
    public void setId(Long id) {
        _id = id;
    }

    /**
     * @param name the name for the question.
     */
    public void setName(final String name) {
        _name = name;
    }

    /**
     * @param questions list of questions to set.
     */
    public void setQuestions(List<Question> questions) {
        _questions = questions;
    }
}

任何想法我做错了什么?


答案 1

有几种可能的原因:

  1. 您的实体类位于同一个子包中,或者位于子包相对中,如果没有,那么您的spring应用程序看不到它们,因此不会在db中创建任何内容@EnableAutoConfiguration.

  2. 检查您的配置,似乎您正在使用一些休眠特定选项,请尝试将它们替换为:

    spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
    spring.jpa.hibernate.ddl-auto=update
    spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
    spring.datasource.url=jdbc:mysql://localhost:3306/test
    spring.datasource.username=test
    spring.datasource.password=
    

**请注意,手动加载驱动程序类是不必要的,因为它是自动注册的,所以不要打扰自己

  1. 您必须在文件夹中。application.propertiessrc/main/resources

如果您没有正确指定方言,它可能会尝试默认与启动内存数据库捆绑在一起,并且(就像我一样)我可以看到它尝试连接到本地(请参阅控制台输出)实例并在更新架构时失败。HSQL


答案 2

您是否尝试过使用以下命令运行它:

spring.jpa.generate-ddl=true

然后

spring.jpa.hibernate.ddl-auto = create

默认情况下,DDL 执行(或验证)将延迟,直到 ApplicationContext 启动。还有一个spring.jpa.generate-ddl标志,但如果Hibernate自动配置处于活动状态,则不会使用它,因为ddl-auto设置更细粒度。

查看弹簧靴功能


推荐