码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis注解

时间:2019-10-24 09:23:05      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:rom   result   name   value   date   param   基本   set   rop   

基本的增删改

@Insert("insert into t_user values(null,#{username},#{password},#{account})")

    

@Delete(“delete from t_user where pk_id = #{id}”)

    

@Update(“update t_user set f_username=#{param1} where pk_id=#{param2}”)

简单查询

@Select(“select * from t_user where pk_id=#{id}”)

   

@Select(“select *from t_user”)

结果集

@Results(
    value={     @Result(id=true,column=“pk_id”,property=“id”),
    @Result(property=“name”,column=“f_name”)
    }
)
在XML中定义结果集resultMap
@ResultMap(“结果集名字”)

 

mybatis注解

标签:rom   result   name   value   date   param   基本   set   rop   

原文地址:https://www.cnblogs.com/cw172/p/11730082.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!