这个报错应该是和源码有关系的,先填个坑。
先写写解决方法
<select id="findByUuid" resultMap="TicketResult" parameterType="String">
select * from t_ticket
<where>
<if test="_parameter!=null">
uuid=#{_parameter}
</if>
</where>
</select>
这样就好了 ,是一个动态SQL
<if test="start!=null and size!=null">
limit #{start},#{size}
</if>
之前在其中还加了这一句,但是会报错,应该是应为start和size参数引起的。