我是Ibatis的新手。如何使用Ibatis生成序列号并将该序列号插入mysql表?序列号应以1000开头,以便可以用作表中的主键。我正在使用spring,ibatis和mysql。

最佳答案

由于iBatis自2010年以来已死,我推测MyBatis的使用情况。使用MyBatis you can use these annotations to insert and retrieve primary key from DB and map both to a interface

@Insert("insert into table2 (name) values(#{name})")
@SelectKey(statement="call identity()", keyProperty="nameId", before=false, resultType=int.class)
int insertTable2(Name name);

关于mysql - Ibatis序列号生成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30923179/

10-09 08:00