Mybatis Construction Resultmap Search SQL

Source: Internet
Author: User

Mapping configuration Files

<!--type: The unique identifier of the entity class for the mapped data type Id:resultmap-<resultmap type= "person" id= "Baseresultmap" >  <!-- Column: Field name of Library Table property: attribute name in entity class---  <id column= "person_id" property= "PersonId"/>  <result column = "name" property= "name"/>  <result column= "gender" property= "gender"/> <result  column= "Person_ Addr "property=" personaddr "/>  <result column=" Birthday "property=" Birthday "/> </resultMap>
Mapping Configuration Query statements

<!--when querying a collection Resultmap refers to generics in the collection--<select id= "Selectpersonall" resultmap= "Baseresultmap" >  SELECT * From person  </select>
Map Management Library Table files

<!--centrally manage map files for library tables--<mappers>  <mapper resource= "Com/hao947/sql/mapper/personmapper.xml"/> </mappers>
Test file
<!--when querying a collection resultmap refers to the generic in the collection--//query all @Test public void Selectpersonall () {  //create a sqlsession  sqlsession session = Sqlsessionfactory.opensession ();  try {   List<person> List = Session     . SelectList ("Com.hao947.sql.mapper.PersonMapper.selectPersonAll");   for (person p:list) {    System.out.println (p);}}  finally {   session.close ()  }}


Copyright notice: This article Bo Master original article. Blog, not reproduced without consent.

Mybatis Construction Resultmap Search SQL

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.