本文介紹了在Liqubase CustomTaskChange類中使用其他Spring Bean的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我需要執(zhí)行一些數(shù)據(jù)遷移,這太復(fù)雜了,無(wú)法在Liquid Base變更集中完成。我們使用彈簧
這就是為什么我編寫了一個(gè)實(shí)現(xiàn)liquibase.change.custom.CustomTaskChange類的類。然后,我從變更集中引用它。
到目前為止一切都很好。
我的問(wèn)題是:
是否可以從此類中訪問(wèn)其他Spring Bean?
當(dāng)我嘗試在這個(gè)類中使用自動(dòng)連接的Bean時(shí),它是空的,這讓我認(rèn)為自動(dòng)連接在這一點(diǎn)上根本沒(méi)有完成?
我還讀到了其他一些線程,Liquibase Bean必須在所有其他Bean之前初始化,對(duì)嗎?
以下是我編寫的類的一個(gè)片段:
@Component
public class UpdateJob2 implements CustomTaskChange {
private String param1;
@Autowired
private SomeBean someBean;
@Override
public void execute(Database database) throws CustomChangeException {
try {
List<SomeObject> titleTypes = someBean.getSomeObjects(
param1
);
} catch (Exception e) {
throw new CustomChangeException();
}
...
我得到一個(gè)異常,調(diào)試時(shí)我可以看到某個(gè)Bean為空。
以下是SpringLiquibase的配置:
@Configuration
@EnableTransactionManagement(proxyTargetClass = true)
@ComponentScan({
"xxx.xxx.."})
public class DatabaseConfiguration {
@Bean
public SpringLiquibase springLiquibase() {
SpringLiquibase liquibase = new SpringLiquibase();
liquibase.setDataSource(dataSource());
liquibase.setChangeLog("classpath:liquibase-changelog.xml");
return liquibase;
}
...
更多配置:
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
<includeAll path="dbschema"/>
</databaseChangeLog>
此處來(lái)自變更集的調(diào)用:
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
<changeSet id="201509281536" author="sr">
<customChange class="xxx.xxx.xxx.UpdateJob2">
<param name="param1" value="2" />
</customChange>
</changeSet>
推薦答案
您的changeset.xml中引用的類不是由Spring托管的,因此像DI這樣很酷的東西將無(wú)法工作。
您可以做的是將SpringBean注入到非Spring對(duì)象中。查看此答案:https://stackoverflow.com/a/1377740/4365460
這篇關(guān)于在Liqubase CustomTaskChange類中使用其他Spring Bean的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,