Díky MyBatis Generator
's mapper.xml, naučil jsem se, jak potlačit čárky. MyBatis má značku <set>
který smaže poslední čárku. Je to také napsáno v MyBatis - Dynamic Sql
:
Můžete to napsat jako:
<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>