使用 H2 数据库和 Liquibase 配置 Spring Boot
Posted
技术标签:
【中文标题】使用 H2 数据库和 Liquibase 配置 Spring Boot【英文标题】:Configure Spring boot with H2 database and Liquibase 【发布时间】:2019-01-26 20:57:54 【问题描述】:我正在使用 Spring boot2,我正在尝试使用 H2 + Liquibase + JUNIT 配置单元测试。
我认为 liquibase 没有执行 changeLog 文件并应用 SQL 命令,单元测试无法识别我的表。
我在我的文件中放了错误的 sql 以查看更改日志文件是否已执行,但是,似乎没有执行。
为什么我的应用程序无法访问表?也许 liquibase 没有执行?
在我的 src/test/resource 我有这个文件:application.yml
spring:
application:
name: my-api
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:mem:myDB;MODE=mysql;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
username: sa
password: sags
liquibase:
enabled: true
user: sa
password: sags
change-log: classpath:/db/changelog/db.changelog-master.xml
jpa:
hibernate:
ddl-auto: none
database-platform: org.hibernate.dialect.H2Dialect
show-sql: true
properties:
hibernate:
use_sql_comments: true
format_sql: true
h2:
console:
enabled: true
path: /console
我的测试课:
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class FooRepositoryTest
@Autowired
private FooRepository fooRepository;
@Test
public void findAllMustReturnAnything()
List<Object> result = fooRepository.tables();
FooRepository 方法:
@Query(value = "SHOW TABLES", nativeQuery = true)
List<Object> tables();
当我运行单元测试时,我得到以下结果:
我的变更日志文件位于:src/main/resources/db
更新:我发现为什么 liquibase 没有执行我的 sql 代码。这是因为我的 SQL 文件有“dbms:mysql”,所以,我使用 H2 liquibase 执行的方式将不适用。
-- changeset 1.0:2 dbms:mysql
command
-- rollback command
现在,我需要知道为什么我在会话中选择的数据库不是 myDB。
【问题讨论】:
如果您的变更日志文件位于 src/main/resources 中,则其位置不是classpath:/db/changelog/db.changelog-master.xml
。它是classpath:db.changelog-master.xml
(假设这是正确的文件名)
对不起,我忘了在解释中加上“db”,我的文件在:src/main/resources/db 当我更改文件名以测试是否会失败时,它失败了,所以文件在执行过程中被发现,但什么也不做。
【参考方案1】:
我认为在你的情况下 Spring 会打开自动配置数据源。(https://docs.spring.io/spring-boot/docs/1.5.9.RELEASE/api/org/springframework/boot/test/autoconfigure/orm/jpa/AutoConfigureTestDatabase.Replace.html)
尝试将其关闭。
spring.test.database.replace=none
还有一些不必要的配置。
liquibase:
user: sa
password: sags
您可以删除用户和密码,liquibase 从数据源中使用它。
【讨论】:
以上是关于使用 H2 数据库和 Liquibase 配置 Spring Boot的主要内容,如果未能解决你的问题,请参考以下文章
尝试在 H2 数据库中创建表时出现 Liquibase 错误
Liquibase:使用带 H2 数据库的 modifyDataType 重构将 INT 自动增量列更改为 BIGINT