Configure resultMap in Mybatis to query all SQL statements.

Source: Internet
Author: User

Ing configuration file

<! -- Type: id of the Data type of the ing object class: Unique Identifier of resultMap --> <resultMap type = "person" id = "BaseResultMap"> <! -- Column: Field Name property of the database table: property name in the object 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>
Ing configuration query statement

<! -- When querying a set, resultMap refers to the generic type in the set --> <select id = "selectPersonAll" resultMap = "BaseResultMap"> select * from person </select>
Ing Management Library and table files

<! -- Centrally manage the ing files of database tables --> <mappers> <mapper resource = "com/hao947/SQL/mapper/PersonMapper. xml"/> </mappers>
Test File
// <! -- When querying a set, resultMap refers to the generic type in the set --> // 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 ();}}


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.