Spring 2.5 Integration with Ibatis 3

Does anyone know how to integrate new Ibatis with current Spring 2.5? I am studying pulling it into a project, and I was curious if someone had done this before.

+3
source share
2 answers

There is an open JIRA problem for this ( SPR-5991 ). It supports iBatis3 with Spring 3.1 tag.

+3
source

Is it different from iBatis 2? With Spring 2.5 and iBatis 2, all you had to do was:

<bean id = "sqlMapClient" class = "org.springframework.orm.ibatis.SqlMapClientFactoryBean">
    <property name = "configLocation" value = "SqlMapConfig.xml" />
    <property name="dataSource" ref="dataSource" />
</bean>
0

Source: https://habr.com/ru/post/1715720/


All Articles