mengsun 2011-04-20
1、spring配置文件中增加以下代码
<beanid="sqlMapClient"class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<propertyname="configLocation"value="classpath:conf/ibatis/sqlmap-config.xml"/>
<propertyname="dataSource"ref="dataSource"/>
</bean>
<beanid="xxxxx"class="xxxxxx">
<propertyname="sqlMapClient"ref="sqlMapClient"/>
</bean>
2、ibatis配置文件sqlmap-config.xml中引入具体的ibatis配置文件即可
<sqlMapresource="conf/ibatis/ibatis.xxx.xml"/>
3、所有dao类都继承com.ibatis.sqlmap.client.SqlMapClient
如:对于sql语句order by #user_id#,如果传入的值是111,那么解析成sql时的值为order by "111", 如果传入的值是id,则解析成的sql为order by "id"。