码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMybatis常用代码

时间:2015-05-08 23:32:38      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

1.开启对@ResponseBody应用支持
<mvc:annotation-driven/>
在Controller处理方法前定义@ResponseBody注解

2.在使用MyBatis时,有时需要返回MySQL和SQLServer数据库自动增长的主键值,可以采用下面方法定义:
<insert id="addDept" parameterType="Dept"
keyProperty="deptno" useGenerateKeys="true">
insert into T_DEPT(DNAME,LOC)values(#{dname},#{loc})
</insert>

3.Oracle基于序列生成主键的映射方法如下:
<insert id="addDept" parameterType="Dept">
<selectKey keyProperty="deptno"
order="BEFORE" resultType="java.lang.Integer">
select dept_seq.nextval from dual
</selectKey>
intsert into T_DEPT(DEPTNO,DNAME,LOC)values(#{deptno},#{dname},#{loc})
</insert>

SpringMybatis常用代码

标签:

原文地址:http://www.cnblogs.com/Crow00/p/4488981.html

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