解决方案
5
getSqlMapClientTemplate().update配置文件里没有,可是这个业务类是有返回值的。
10
10
<update id=”updateHome” parameterType=”home”>
update home set homeName=#{homeName},homeAddress=#{homeAddress},homePrice=#{homePrice}
where homeId=#{homeId}
</update>
id是方法名字 parameterType是参数
update home set homeName=#{homeName},homeAddress=#{homeAddress},homePrice=#{homePrice}
where homeId=#{homeId}
</update>
id是方法名字 parameterType是参数
10
不需要配置update和delete,insert的返回类型,默认返回int
<update id=”update” parameterType=”string”>
对应的mapper
public int update(String);
<update id=”update” parameterType=”string”>
对应的mapper
public int update(String);
5
求帮助 http://bbs.csdn.net/topics/390797939?page=1#post-397461517