mybatis查询,sql语句没问题但是查不出结果

来源:互联网 发布:电脑制作漫画软件 编辑:程序博客网 时间:2024/05/19 21:17

映射文件sql语句

<select id="findUserList" parameterType="com.sgn.mybatis.po.UserQueryVo" resultType="user">        select * from         user where username like '%${user.username}%'        and sex = #{user.sex}    </select>

当sex取值为String类型的时候查不出结果
当Int类型的时候才可以查出结果

0 0