Mybatis獲取自動增長Id MyBatis成功插入後獲取自動增長的id 1、向xxMapping.xml配置中加上兩個配置。 其中keyProperty的值就是資料庫中自增長欄位名。 2、在Controller插入方法中,插入成功後,直接通過model的get的方法就能獲得自增長的id值。 ...
Mybatis獲取自動增長Id
MyBatis成功插入後獲取自動增長的id
1、向xxMapping.xml配置中加上兩個配置。
<insert id="insertUser" useGeneratedKeys="true" keyProperty="id" parameterType="UserEntity">
INSERT INTO USER VALUES(null,#{userName},#{password},#{realName})
</insert>
其中keyProperty的值就是資料庫中自增長欄位名。
2、在Controller插入方法中,插入成功後,直接通過model的get的方法就能獲得自增長的id值。
@RequestMapping("addUser")
public String addUser(@ModelAttribute UserEntity userEntity) {
int i = userService.insertUser(userEntity);//插入記錄到資料庫,userEntity中沒有設置id的值
String result = "";
if (i > 0) {
result = "inster User SUCCESS!!! ID: " + userEntity.getId();//插入成功後,將自增長的id存入到原來的model中,通過get方法就能拿到自增長的id了
} else {
result = "inster User FAIL!!!";
}
return result;
}