mybatis orcale update接收参数为对象 Mybatis和orcale update语句中接收参数为对象的实例代码
弓长张&木子李 人气:0想了解Mybatis和orcale update语句中接收参数为对象的实例代码的相关内容吗,弓长张&木子李在本文为您仔细讲解mybatis orcale update接收参数为对象的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:mybatis,orcale,update,下面大家一起来学习吧。
Mybatis的 mapper.xml 中 update 语句使用 if 标签判断对像属性是否为空值。
UserDTO是传过来参数的类型,userDTO是在mapperDao接口中给更新方法的参数起的别名。
mapperDao.java
int updata(@Param("userDTO") UserDTO userDTO);
mapper.xml
<update id="updata" parameterType="UserDTO"> UPDATE table u <set> <if test=" userDTO.age!=null and userDTO.age !='' "> u.identity = #{userDTO.age}, </if> <if test=" userDTO.name !=null and userDTO.name !='' "> u.name = #{userDTO.name}, </if> </set> <where> u.id = #{userDTO.id} </where> </update>
总结
以上所述是小编给大家介绍的Mybatis和orcale update语句中接收参数为对象的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
加载全部内容