1. 程式人生 > >mybatis 進行插入操作,如何返回主鍵問題

mybatis 進行插入操作,如何返回主鍵問題

最近看了一下mybatis的內容,關於進行插入返回主鍵

可以在配置檔案中進行如下配置

<insert id="insertUser" parameterType="User" useGeneratedKeys="true"
keyProperty="id">
insert into user(username, age) values(#{username}, #{age})
</insert>

這個是mysql 資料庫的

Oracle的我沒有試過,有知道請告知