qq空间刷赞推广网站,郑州金水区做网站公司,wordpress 媒体播放,中华南大街网站建设Mybatis传入参数类型为List作为条件进行查询 higher2017关注
2017.02.07 10:23:16字数 130阅读 5,658
表结构#xff1a; 表名称为constant
需求#xff1a;
现在想查询type为2、3的所有数据#xff08;甚至想查询type为1,2,3,4,5....,100的所有数据#xff09;并且返回…Mybatis传入参数类型为List作为条件进行查询 higher2017关注
2017.02.07 10:23:16字数 130阅读 5,658
表结构 表名称为constant
需求
现在想查询type为2、3的所有数据甚至想查询type为1,2,3,4,5....,100的所有数据并且返回的值是Mapkey为idvalue为constant类
如果采用一个一个传参的方式进行查询肯定是不行的,以下是通过Mybatis提供的foreach标签并配合in进行查询
Mapper
?xml version1.0 encodingUTF-8 ?
!DOCTYPE mapper PUBLIC -//mybatis.org//DTD Mapper 3.0//EN http://mybatis.org/dtd/mybatis-3-mapper.dtd
mapper namespacecom.jm.dao.ConstantDaoresultMap idBaseResultMap typecom.jm.model.Constantresult columnid propertyid jdbcTypeBIGINT /result columnkey propertykey jdbcTypeVARCHAR /result columnvalue propertyvalue jdbcTypeVARCHAR /result columntype propertytype jdbcTypeINTEGER //resultMap!--此处一定要注意属性的名称是resultMap并且值为“BaseResultMap”这样就可以保证返回的Map的value是Constant的对象 --select idloadConstantByType resultMapBaseResultMapselect * from constant where type in!-- 这里要将collection属性的值标记为list不然不知道传入的参数是list separator表示分离器 item表示list中的一个元素 --foreach itemitem indexindex collectionlist open(separator, close)#{item}/foreach/select/mapperDAO
import java.util.List;
import java.util.Map;import org.apache.ibatis.annotations.MapKey;
import org.springframework.stereotype.Repository;Repository
public interface ConstantDao {/*** 注释MapKey表示表中那个字段作为Map的key* return*/MapKey(id)MapLong,Constant loadConstantByType(ListInteger type);
}POJO实体类
public class Constant {private Long id;private String key;private String value;private Integer type;public String toString(){StringBuffer s new StringBuffer(Constant:{);s.append(id:).append(this.id).append(,);s.append(key:).append(this.key).append(,);s.append(value:).append(this.value).append(,);s.append(type:).append(this.type).append(});return s.toString();}public Constant() {super();// TODO Auto-generated constructor stub}public Long getId() {return id;}public void setId(Long id) {this.id id;}public String getKey() {return key;}public void setKey(String key) {this.key key null ? null : key.trim();}public String getValue() {return value;}public void setValue(String value) {this.value value null ? null : value.trim();}public Integer getType() {return type;}public void setType(Integer type) {this.type type;}
}pojo中的实体类最好重写toString方法
junitTest:
import java.util.Arrays;
import java.util.List;
import java.util.Map;import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;RunWith(SpringJUnit4ClassRunner.class)
ContextConfiguration(locations { classpath:spring.xml, classpath:spring-mybatis.xml })
public class MubatisMapTest {Autowiredprivate ConstantDao constantDao;Testpublic void mapTest1() {ListInteger typeList Arrays.asList(2,3);MapLong,Constant constantMap constantDao.loadConstantByType(typeList);System.out.println(constantMap);}
}最终测试结果 Paste_Image.png