mybatis mapper文件sql语句传入hashmap参数

时间:2016-12-13 06:56:43   收藏:0   阅读:831

1.怎样在mybatis mapper文件sql语句传入hashmap参数?

答:直接这样写map就可以

<select id="selectTeacher" parameterType="Map" resultType="com.myapp.domain.Teacher">  
    select * from Teacher where c_id=#{id} and sex=#{sex}  
</select>  

 

原文:http://www.cnblogs.com/panxuejun/p/6166263.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!