Myślę, że do wstawiania używasz nextval.Spróbuj wykonać następujące czynności:
<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>
Również zamiast SELECT nextVal('mySeq')
możesz użyć tego SELECT mySeq.nextVal from dual