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

mybatis自增长插入id

时间:2016-11-02 01:18:41      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:tor   map   bat   pre   style   type   mybatis   rom   mapper   

第一种:

<insert id="insertUser" parameterClass="ibatis.User"> 
      <selectKey resultType="long" keyProperty="id"> 
        select SEQ_TEST.NEXTVAL from dual 
      </selectKey>          
           insert into user 
          (name,password) 
          values 
          (#name#,#password#) 
</insert>

 

第二种:

@Repository("empMapper")
public interface EmpMapper {

  @Insert("insert into EMP(EMPNO,ENAME,HIREDATE,SAL) values (#{empno},#{ename},#{hiredate},#{sal})")
  @SelectKey(statement="select seq1.nextval from dual",
    keyProperty="empno",resultType=int.class,before=true)
  int add(Emp emp);

}

 

mybatis自增长插入id

标签:tor   map   bat   pre   style   type   mybatis   rom   mapper   

原文地址:http://www.cnblogs.com/xiaoyunxia/p/6021476.html

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