最近在搞一個電商系統(tǒng)中由于業(yè)務(wù)需求,需要在插入一條產(chǎn)品信息后返回產(chǎn)品Id,剛開始遇到一些坑,這里做下筆記,以防今后忘記。
類似下面這段代碼一樣獲取插入后的主鍵
User user = new User(); user.setUserName("chenzhou"); user.setPassword("xxxx"); user.setComment("測試插入數(shù)據(jù)返回主鍵功能"); System.out.println("插入前主鍵為:"+user.getUserId()); userDao.insertAndGetId(user);//插入操作 System.out.println("插入后主鍵為:"+user.getUserId());
經(jīng)過查詢網(wǎng)上資料,發(fā)現(xiàn)大致有兩種方式。
方式一:
在實體類的映射文件 "*Mapper.xml" 這樣寫:
網(wǎng)友評論