LiquiBase は Spring 環境でも、liquibase.spring.SpringMigrator ビーンを宣言することで利用可能です。
<bean id="liquibase" class="liquibase.spring.SpringLiquibase"> <property name="dataSource" ref="myDataSource" /> <property name="changeLog" value="classpath:db-changelog.xml" /> <!-- contexts specifies the runtime contexts to use. --> <property name="contexts" value="test, production" /> </bean>