Bagi saya ini bekerja seperti ini (mybatis 3.x) ..Id harus diatur kenaikan otomatis di tabel mysql
<insert id="createEmpty" parameterType="Project" useGeneratedKeys="true" keyProperty="project.projectId" keyColumn="PROJECT_ID">
INSERT INTO PROJECT (TITLE,DESCRIPTION)
VALUES
(#{title},#{description})
</insert>
CATATAN
keyProperty="project.projectId"
dan useGeneratedKeys="true"
antarmuka saya adalah:
public int createEmpty(@Param("project") Project project, @Param("title") String title,
@Param("description") String description);
akhirnya untuk mendapatkan nilai (yang akan secara otomatis ditetapkan ke properti id pojo) saya menggunakan:
projectRepository.createEmpty(p, "one", "two");
System.err.print(p.getProjectId() + "\n");