Detailed explanation of Mybatis special character processing

Detailed explanation of Mybatis special character processing

Preface:

Mybatis special character processing, processing of special characters in xml files in Mybatis, here are solutions and examples, you can refer to:

1. Problem description:

When querying, you need to obtain data within the time range, as follows:

<if test="startTime != null" > 
  and l.CREATE_TIME >= #{startTime} 
</if> 
<if test="endTime != null" > 
   and l.CREATE_TIME < #{endTime}  
</if> 

However, in the XML file in Mybatis, the query cannot use the less than sign (<) because it is a start tag and a special character.

2. Solution

In the query, you can avoid special characters by including them in CDATA. This method works for all special characters.

<![CDATA[ 
   
]]> 

Here is an example:

<if test="startTime != null" > 
  <![CDATA[ 
    and l.CREATE_TIME >= #{startTime} 
  ]]> 
</if> 
<if test="endTime != null" > 
  <![CDATA[ 
  and l.CREATE_TIME < #{endTime} 
  ]]> 
</if> 

MyBatis returns the primary key. MyBatis Insert operation returns the primary key:

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • Implementation of special character escape interceptor for mybatis/mybatis-plus fuzzy query statement
  • Solve the problem of failure when using like to match with % characters in MyBatis fuzzy search
  • How to use MyBatis to perform like fuzzy query with different conditions
  • Mybatis like fuzzy query special character error escape processing method

<<:  Summary of some reasons why crontab scheduled tasks are not executed

>>:  How to use history redirection in React Router

Recommend

Example of using javascript to drag and swap div positions

1 Implementation Principle This is done using the...

8 essential JavaScript code snippets for your project

Table of contents 1. Get the file extension 2. Co...

MySQL InnoDB tablespace encryption example detailed explanation

Preface Starting from MySQL 5.7.11, MySQL support...

Detailed explanation of various join summaries of SQL

SQL Left Join, Right Join, Inner Join, and Natura...

Pure CSS header fixed implementation code

There are two main reasons why it is difficult to...

How to configure nginx+php+mysql in docker

First, understand a method: Entering a Docker con...

Implementation of react loop data (list)

First, let's simulate the data coming from th...

Install Zookeeper under Docker (standalone and cluster)

After starting Docker, let's take a look at t...

How to find identical files in Linux

As the computer is used, a lot of garbage will be...

Docker swarm simple tutorial

swarm three virtual machines 132,133,134 1. Initi...

How to make your own native JavaScript router

Table of contents Preface Introduction JavaScript...