为spring项目配置liquibase

时间:2015-08-03 16:51:36

标签: java spring spring-boot liquibase

我有下一个 db.changelog-master.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>

<databaseChangeLog
        xmlns="http://www.liquibase.org/xml/ns/dbchangelog/1.7"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog/1.7
         http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.7.xsd">
    <changeSet id="19082014-1" author="autor">
        <sql>
            CREATE TABLE testings (
            id character varying(80) NOT NULL
            )
        </sql>
    </changeSet>
</databaseChangeLog>

我的Spring配置文件如下所示:

@Configuration
@PropertySource("classpath:user.properties")
public class LiquibaseConfig {

    @Autowired
    private Environment env;

    @Bean
    public DataSource dataSource()  {
        DriverManagerDataSource dataSource = new DriverManagerDataSource();

            dataSource.setDriverClassName(env.getProperty("spring.datasource.drivername"));
            dataSource.setUrl(env.getProperty("spring.datasource.url"));
            dataSource.setUsername(env.getProperty("spring.datasource.username"));
            dataSource.setPassword(env.getProperty("spring.datasource.password"));

        return dataSource;
    }

    @Bean
    public SpringLiquibase liquibase()  {
        SpringLiquibase liquibase = new SpringLiquibase();

        liquibase.setDataSource(dataSource());
        liquibase.setChangeLog("classpath:db.changelog-master.xml");

        return liquibase;
    }
}

所以我希望应该创建新表。但是我的数据库仍然是空的。我没有看到日志中的任何错误,我做错了什么?我应该更改弹簧配置类吗?

1 个答案:

答案 0 :(得分:0)

好的,我想我解决了这个问题。每次运行脚本时,都应更改 db.changelog-master.xml 文件中的id标记。