MyBatisGenerator
に感謝します のmapper.xmlファイルで、コンマを抑制する方法を学びました。 MyBatisにはタグ<set>
があります 最後のコンマを消去します。また、 MyBatis --DynamicSql
で記述されています。 :
次のように書くことができます:
<update id="update" parameterType="User">
UPDATE user
<set>
<if test="username != null">
username = #{username},
</if>
<if test="password != null">
password = #{password},
</if>
<if test="email != null">
email = #{email},
</if>
</set>
WHERE id = #{id}
</update>