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:
|
<<: Summary of some reasons why crontab scheduled tasks are not executed
>>: How to use history redirection in React Router
1 Implementation Principle This is done using the...
Autotrash is a command line program that automate...
Table of contents 1. Get the file extension 2. Co...
background The company code is provided to third ...
Preface Starting from MySQL 5.7.11, MySQL support...
first step: In VMware, click "Edit" - &...
SQL Left Join, Right Join, Inner Join, and Natura...
There are two main reasons why it is difficult to...
First, understand a method: Entering a Docker con...
First, let's simulate the data coming from th...
After starting Docker, let's take a look at t...
As the computer is used, a lot of garbage will be...
A colleague asked me to help him figure out why m...
swarm three virtual machines 132,133,134 1. Initi...
Table of contents Preface Introduction JavaScript...