これを解決する最良の方法は、独自のブール型ハンドラーを実装することです。
public class YesNoBooleanTypeHandler extends BaseTypeHandler<Boolean> {
@Override
public void setNonNullParameter(PreparedStatement ps, int i, Boolean parameter, JdbcType jdbcType)
throws SQLException {
ps.setString(i, convert(parameter));
}
@Override
public Boolean getNullableResult(ResultSet rs, String columnName)
throws SQLException {
return convert(rs.getString(columnName));
}
@Override
public Boolean getNullableResult(ResultSet rs, int columnIndex)
throws SQLException {
return convert(rs.getString(columnIndex));
}
@Override
public Boolean getNullableResult(CallableStatement cs, int columnIndex)
throws SQLException {
return convert(cs.getString(columnIndex));
}
private String convert(Boolean b) {
return b ? "yes" : "no";
}
private Boolean convert(String s) {
return s.equals("yes");
}
}
次に、マッパーテンプレートで使用するには:
<update id="update">
UPDATE
myTable
<set>
...
<if test="myField != null">myField = #{myField ,typeHandler=YesNoBooleanTypeHandler}</if>
...
</set>
WHERE
...
</update>