search
Home类库下载java类库Mybatis common summary
Mybatis common summaryOct 29, 2016 pm 01:37 PM

1. Parameter injection
1.1 uses the form of #{0}, #{1}, 0 represents the first parameter, 1 represents the second parameter
 public List queryList(String workerId, Integer topNum);

 
1.2Map or encapsulated object, workerId is the key in the map; if it is an object, workerId For attributes in objects, this method is very commonly used
  public Integer queryCountByWorkerId(Map queryParam);
 public Integer queryCountByWorkerId(@param(“workerId”)String workerId); 

2. Return
2.1 mapping

  
  
  
 
 
  select ID,CREATE_DATE,WORKERID from tableName
 
 This way the query statement queries the fields directly It’s just a field in the database, just define the mapped column
2.2 Return the object directly
 

 The field alias returned by the query here must correspond to the attributes in the returned object


3. Execute native sql
3.1sql parameters:    //getter setter omitted

  }

3.2 interface:
  /**
  * @Function description: Create

  * @param vo

  * @return
 */

  public int excuteCreateSql(ParamVo vo);


  /**
  * @Function description: Query
  * @param vo
  * @return
 */
public List
> excuteSelectSql(ParamVo vo);

3.3xml:
 

  ${sql}
 

 ${}Do not compile sql and execute it directly. If you use #{sql}, an error may be reported
  

 ${ sql}  

  I don’t know here whether to use map or hashmap as the return type

4.include: Sometimes the fields to be returned by the two methods are the same or the where clause is the same. In order to avoid duplication of code, just extract it and use include
4.1 The same part of the definition clause
   WHERE F.STATUS = 1 AND F.WORKER_ID = #{workerId}
  ORDER BY C.CREATE_DATE DESC

 


4.2 Quote
  
   SELECT COUNT(1)
  

 
  

   SELECT ID id, WORKER_ID workerId, UPDATE_DATE updateDate,...

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.