gpt4 book ai didi

java - Spring Boot数据初始化自定义路径

转载 作者:太空宇宙 更新时间:2023-11-04 09:43:22 25 4
gpt4 key购买 nike

我有一个 Spring Boot 应用程序。我想将数据初始化文件保留在包本身中,如下所示的结构。

something.com.package1
--model.class
--service.class
--controller.class
--mydata.sql
something.com.package2
--model.class
--service.class
--controller.class
--mydata2.sql

我可以在 spring.datasource.data 中使用 classpath 实现相同的效果应用程序属性

spring.jpa.hibernate.ddl-auto=create
spring.datasource.initialization-mode=always
spring.datasource.data=classpath:com/idot/userAccessForm/*.sql
spring.datasource.url=jdbc:mysql://localhost:3306/xx
spring.datasource.username=xx
spring.datasource.password=xx

当我尝试从 eclipse 作为 Spring Boot 应用程序运行它时它工作正常

但是,如果我使用 mnv clean package 构建 jar 并使用 java -jar app.jar 运行,则不会读取文件。

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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.novartis</groupId>
<artifactId>idot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>idot</name>
<description>Idot App</description>

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

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

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

</project>

我怎样才能达到同样的效果?

编辑:

如果文件作为 data.sql 保存在 /src/main/resources 中,它可以很好地运行 jar 并从 eclipse 运行,但我想将每个模型的数据保留在其包本身中。我也知道我可以使用 liquibaseflywaydb 但为什么它在这种情况下不起作用?

最佳答案

通常流行数据源的 init.sql 和 data.sql 驻留在 resources 文件夹 (src/main/resources) 中,在启动时自动执行。

如果你想使用 schema.sql,你应该设置:

spring.jpa.hibernate.ddl-auto=none

关于java - Spring Boot数据初始化自定义路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55709978/

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