其他分享
首页 > 其他分享> > Liquibase和Spring集成

Liquibase和Spring集成

作者:互联网

我正在尝试将Liquibase与Spring集成(请参阅此http://www.liquibase.org/documentation/spring.html)
目前我手动使用Liquibase,我想更新数据库作为应用程序的初始化的一部分(战争)

一切运行良好,期望Liquibase Spring Bean在许多其他bean(例如Spring Security beans)之后加载.

我怎样才能确保在所有其他bean之前加载Liquibase bean?
考虑到目前Liquibase bean有它自己的Spring配置文件.

谢谢.

解决方法:

我偶然发现了同样的问题并用@DependsOn注释解决了它.
它有助于spring以有意义的顺序解决依赖关系,并且应该是相当不言自明的.

示例代码:

@DependsOn("liquibase")
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {

    @Autowired
    private DataSource dataSource;

    @Autowired
    public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
        auth.jdbcAuthentication()
                .dataSource(dataSource)
                // ... 
    }

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        // ...
    }
}

或者,还有基于XML的配置的depends-on属性.

标签:spring,liquibase
来源: https://codeday.me/bug/20190830/1770926.html