Voor mij werkt het als volgt (mybatis 3.x) ..De id moet automatisch worden verhoogd in de mysql-tabel
<insert id="createEmpty" parameterType="Project" useGeneratedKeys="true" keyProperty="project.projectId" keyColumn="PROJECT_ID">
INSERT INTO PROJECT (TITLE,DESCRIPTION)
VALUES
(#{title},#{description})
</insert>
OPMERKING
keyProperty="project.projectId"
en useGeneratedKeys="true"
mijn interface is:
public int createEmpty(@Param("project") Project project, @Param("title") String title,
@Param("description") String description);
om uiteindelijk de waarde te krijgen (die automatisch wordt toegewezen aan de id-eigenschap van de pojo) gebruik ik:
projectRepository.createEmpty(p, "one", "two");
System.err.print(p.getProjectId() + "\n");