添加搜索功能之后
我的单条搜索和模糊查询查不出数据,其他的都正常。没有报错,日志中打印一切正常,但就是返回0条数据。
列表查询能正常返回。数据是有的。
<select id="queryMessageList" parameterType="com.imooc.bean.Message" resultMap="MessageResult">
select ID,COMMAND,DESCRIPTION,CONTENT from MESSAGE
<where>
<if test="mCommand != null and !"".equals(mCommand.trim())">
and COMMAND = #{mCommand}
</if>
<if test="mDescription != null and !"".equals(mDescription.trim())">
and DESCRIPTION like '%' #{mDescription} '%'
</if>
</where>
</select>