知识点:bind在模糊查询中的用法
在我的博客 mybatis中使用mysql的模糊查询字符串拼接(like) 中也涉及到bind的使用
<!-- List<Employee> getEmpsTestInnerParameter(Employee employee); -->
<select id="getEmpsTestInnerParameter" resultType="com.hand.mybatis.bean.Employee"> <!-- bind:可以将OGNL表达式的值绑定到一个变量中,方便后来引用这个变量的值 --> <bind name="bindeName" value="'%'+eName+'%'"/> eName是employee中一个属性值 SELECT * FROM emp <if test="_parameter!=null"> where ename like #{ bindeName} </if> </select>
测试类中:
Employee emp=new Employee();
emp.setEname("张"); 为eName属性赋值为“张” List<Employee> list=mapper.getEmpsTestInnerParameter(emp); for (Employee employee : list) { System.out.println(employee); }