Grazie a MyBatis Generator
's mapper.xml, ho imparato come sopprimere le virgole. MyBatis ha un tag <set>
che cancella l'ultima virgola. È anche scritto in MyBatis - Dynamic Sql
:
Puoi scriverlo come:
<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>