我在eclipse中运行了一个spring引导应用程序:
@SpringBootApplication
public class StatBasketServerApplication {
public static void main(String[] args) {
SpringApplication.run(StatBasketServerApplication.class, args);
}
}
属性文件:
spring.jpa.hibernate.ddl-auto=none
spring.h2.console.enabled=true
spring.datasource.url= jdbc:postgresql://localhost:5432/
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.jpa.hibernate.ddl-auto=create-drop
当应用程序启动时,不进行液基更改。
我需要在gradle构建中做一些事情吗?如果我看一下控制台,我没有看到任何关于liquidbase的内容。
更改日志在
<标题> 更新资源/db/changelog.xml
这是我的构建文件
buildscript {
ext {
springBootVersion = '1.4.1.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
jar {
baseName = 'statBasketServer'
version = '0.0.1-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter')
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-data-solr")
compile("org.springframework.boot:spring-boot-starter-hateoas")
compile("org.json:json:20141113")
compile("org.postgresql:postgresql:9.4-1201-jdbc4")
compile("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.6.1")
compile("org.codehaus.woodstox:woodstox-core-asl:4.4.1")
compile group: 'org.postgresql', name: 'postgresql', version: '9.4.1211.jre7'
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile("com.jayway.jsonpath:json-path-assert:0.8.1")
}
标题>- 你需要添加
org.liquibase:liquibase-core
到你的类路径 - 默认将读取
db/changelog/db.changelog-master.yaml
作为默认的更改日志,或者您可以通过application.properties
中的liquibase.change-log
配置它,spring启动也支持xml, json的liquibase脚本。
这里是spring boot提供的一个例子,你可以参考一下,其中一点是这个例子是使用maven作为构建工具的