application-test.properties
539 Bytes
# jpa配置
spring.jpa.database= H2
spring.jpa.properties.hibernate.show_sql= true
spring.jpa.properties.hibernate.hbm2ddl.auto = update
spring.jpa.properties.hibernate.format_sql= true
# db配置
spring.datasource.driver-class-name=org.h2.Driver
# h2 v1.4.200 不支持 mvcc了去除
# spring.datasource.url=jdbc:h2:mem:core;DB_CLOSE_DELAY=1000;MVCC=TRUE;LOCK_TIMEOUT=10000
spring.datasource.url=jdbc:h2:mem:core;DB_CLOSE_DELAY=1000;LOCK_TIMEOUT=10000
spring.datasource.username=sa
spring.datasource.password=
# ds配置