mybatis 獲取自增id

    在開發中碰到用戶註冊的功能須要用到用戶ID,可是用戶ID是數據庫自增生成的,使用下面的註解mybatis的insert語句能夠解決:數據庫

@InsertProvider(type = UserSqlProvider.class, method = "insert")
@Options(useGeneratedKeys=true,keyProperty="id")
int insert(User user);
相關文章
相關標籤/搜索