I need to config the datatypeFactory(eg:MysqlDataTypeFactory) inside of the applicationContext.xml of dbUnitDatabaseConfig, could you tell me how to config it into the below configurations?Thanks
Custom IDatabaseConnections
<bean id="dbUnitDatabaseConfig" class="com.github.springtestdbunit.bean.DatabaseConfigBean">
<property name="skipOracleRecyclebinTables" value="true"/>
</bean>
<bean id="dbUnitDatabaseConnection" class="com.github.springtestdbunit.bean.DatabaseDataSourceConnectionFactoryBean">
<property name="databaseConfig" ref="dbUnitDatabaseConfig"/>
</bean>
I need to config the datatypeFactory(eg:MysqlDataTypeFactory) inside of the applicationContext.xml of dbUnitDatabaseConfig, could you tell me how to config it into the below configurations?Thanks
Custom IDatabaseConnections