MyBatis 中@param 的用法

Posted 博了个客。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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());   


 

 




以上是关于MyBatis 中@param 的用法的主要内容,如果未能解决你的问题,请参考以下文章

mybatis中@Param的用法和作用

myBati初学

myBati初学

mybati之运行过程

Mybatis标签bind用法

mybati的Dao代理