Question

Does anyone know of a way to integrate the new Ibatis with the current Spring 2.5? I'm exploring pulling it in to a project and was curious if anyone had done it before.

Was it helpful?

Solution

There's an open JIRA issue for this (SPR-5991). It has iBatis3 support tagged for Spring 3.1

OTHER TIPS

Is it very 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>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top