MyBatis 中@param 的用法

示例:

接口方法

[java] view plain copy
 
  1. public List<Teacher> selectTeacher(@Param(value="id") String id,@Param(value="sex") String sex);  


XML文件

[html] view plain copy
 
  1. <select id="selectTeacher"  resultType="com.myapp.domain.Teacher">  
  2.     select * from Teacher where c_id=#{id} and sex=#{sex}  
  3. </select>  

  #{}里面的id 和 sex 必须和接口方法里面的 value 值是相同的


测试代码

[java] view plain copy
 
  1. List<Teacher> tList = teacherMapper.selectTeacher("2","男");    
  2. for (Teacher entityTemp : tList) {    
  3.     System.out.println(entityTemp.toString());   


 

 

posted @ 2017-11-18 17:18  博了个客。  阅读(193)  评论(0编辑  收藏  举报