Tôi nghĩ bạn sử dụng nextval để chèn. Hãy thử cách sau:
<insert id="insertPerson" parameterType="Person" useGeneratedKeys="true">
<selectKey keyProperty="personId" resultType="int" order="BEFORE">
SELECT nextVal('mySeq')
</selectKey>
INSERT INTO person (personId,PersonName) VALUES (#{personId},#{personName})
</insert>
Cũng thay vì SELECT nextVal('mySeq')
bạn có thể sử dụng SELECT mySeq.nextVal from dual