MyBatis模糊查询

1、使用${}替换#{}。如:

<select id="getUserInfo" resultMap="UserMap" parameterType="hashmap">
   SELECT username, password, sex, age 
     FROM users a
    WHERE a.username LKIE '%${name}%'
</select>

详细信息参见:

http://www.bug315.com/article/20.htm

 

你可能感兴趣的:(mybatis,模糊查询,like)