HiDoes anyone have an example of iBatis 3 integration with Spring 3.0. With iBatis 2.X the spring conflig file was like this:
<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="dataSource" ref="dbcpDataSource"/> <property name="configLocation" value="classpath:sqlmap-config.xml"/> </bean> -Viv