标签:
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>
标签:
原文地址:http://www.cnblogs.com/Crow00/p/4488981.html