Podziękowania dla MyBatis Generator
's mapper.xml, nauczyłem się ukrywać przecinki. MyBatis ma tag <set>
który usuwa ostatni przecinek. Jest również napisany w MyBatis - Dynamic Sql
:
Możesz napisać to 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>