Three ways to use foreach collection in MyBatis

Source: Internet
Author: User
Tags foreach mongodb postgresql redis


The main use of foreach is in the build in condition, which can iterate a collection in an SQL statement.



The properties of the Foreach element are mainly item,index,collection,open,separator,close.



The item represents the alias of each element in the collection when it iterates, and index specifies a name that represents the position at which each iteration occurs during the iteration, and open indicates what the statement begins with, and separator indicates what symbol is used as the delimiter between each iteration. Close indicates what ends with.






The most critical and error-prone thing when using foreach is the collection property, which must be specified, but in different cases the value of the property is not the same, there are 3 main cases:



1. If a single parameter is passed in and the parameter type is a list, the collection property value is List
2. If a single parameter is passed in and the parameter type is an array, the value of the collection property is array
3. If the parameters passed in are multiple, we need to encapsulate them into a map, of course, the single parameter can also be encapsulated as a map, in fact, if you pass in the parameter, in the breast will also wrap it into a map, the map key is the parameter name, So this time the collection property value is the key to the incoming list or array object in its own encapsulated map



Here's a look at the sample code for each of the three scenarios:



1. Type of single parameter list:





<select id= "Dynamicforeachtest" parametertype= "java.util.List" resulttype= "Blog" >
	select * from T_blog where ID in
	<foreach collection= "list" index= "index" item= "Item" open= "(" separator= "," close= ")" >
		#{ Item}       
	</foreach>    
</select>
The value of the above collection is list, the corresponding mapper is such a public list dynamicforeachtest (list IDs);
Test code:




@Test public
void Dynamicforeachtest () {
	sqlsession session = Util.getsqlsessionfactory (). Opensession ();
	Blogmapper blogmapper = Session.getmapper (blogmapper.class);
	List ids = new ArrayList ();
	Ids.add (1);
	Ids.add (3);
	Ids.add (6);
	List blogs = blogmapper.dynamicforeachtest (IDS);
	for (blog blog:blogs)
		System.out.println (blog);
	Session.close ();
}
2. Type of single-parameter array arrays:
<select id= "Dynamicforeach2test" parametertype= "java.util.ArrayList" resulttype= "Blog" >
	select * from T_ Blog where ID in
	<foreach collection= "array" index= "index" item= "Item" open= "(" separator= "," close= ")" >
		#{item}
	</foreach>
</select>
The above collection is an array, corresponding to the Mapper code: public List dynamicforeach2test (int[] IDs);
The corresponding test code:
@Test public
void Dynamicforeach2test () {
        sqlsession session = Util.getsqlsessionfactory (). Opensession ();
        Blogmapper blogmapper = Session.getmapper (blogmapper.class);
        int[] ids = new int[] {1,3,6,9};
        List blogs = blogmapper.dynamicforeach2test (IDS);
        for (blog blog:blogs)
        System.out.println (blog);    
        Session.close ();
}
3. Encapsulate the parameters as a map type
<select id= "Dynamicforeach3test" parametertype= "Java.util.HashMap" resulttype= "Blog" >
	select * from T_blog Where title like "%" #{title} "%" and ID in
	<foreach collection= "IDs" index= "index" item= "Item" open= "(" separator= " , "close=") ">
		#{item}
	</foreach>
</select>
The value of the above collection is IDs, which is the key of the incoming parameter Map, corresponding to the Mapper code: public List dynamicforeach3test (Map params);
Corresponding Test code:
@Test public
void Dynamicforeach3test () {
	sqlsession session = Util.getsqlsessionfactory (). Opensession ();
	Blogmapper blogmapper = Session.getmapper (blogmapper.class);
	Final List ids = new ArrayList ();
	Ids.add (1);
	Ids.add (2);
	Ids.add (3);
	Ids.add (6);
	Ids.add (7);
	Ids.add (9);
	MAP params = new HashMap ();
	Params.put ("IDs", IDs);
	Params.put ("title", "China");
	List blogs = blogmapper.dynamicforeach3test (params);
	for (blog blog:blogs)
		System.out.println (blog);
	Session.close ();
}


Reprint Address: https://www.cnblogs.com/fangyu19900812/p/6046209.html


Alibaba Cloud Hot Products

Elastic Compute Service (ECS) Dedicated Host (DDH) ApsaraDB RDS for MySQL (RDS) ApsaraDB for PolarDB(PolarDB) AnalyticDB for PostgreSQL (ADB for PG)
AnalyticDB for MySQL(ADB for MySQL) Data Transmission Service (DTS) Server Load Balancer (SLB) Global Accelerator (GA) Cloud Enterprise Network (CEN)
Object Storage Service (OSS) Content Delivery Network (CDN) Short Message Service (SMS) Container Service for Kubernetes (ACK) Data Lake Analytics (DLA)

ApsaraDB for Redis (Redis)

ApsaraDB for MongoDB (MongoDB) NAT Gateway VPN Gateway Cloud Firewall
Anti-DDoS Web Application Firewall (WAF) Log Service DataWorks MaxCompute
Elastic MapReduce (EMR) Elasticsearch

Alibaba Cloud Free Trail

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.