Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.0 Beta 9
-
None
Description
When declaring a type handler within a paramter map and the type handler is declared in another row than the property the type handler is ignored.
This fails:
<select id="getJobs" parameterType="java.util.Map">
SELECT * FROM JOB
<if test="filter.urlPattern!=null">
WHERE url like
#
</if>
</select>
This works:
<select id="getJobs" parameterType="java.util.Map">
SELECT * FROM JOB
<if test="filter.urlPattern!=null">
WHERE url like
#
</if>
</select>