挿入にはnextvalを使用していると思います。次のようにしてください:
<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>
また、SELECT nextVal('mySeq')
の代わりに このSELECT mySeq.nextVal from dual
を使用できます