The use of CDATA tags in mapper

Source: Internet
Author: User
Tags cdata xml parser

The term CDATA refers to textual data (unparsed Character data) that should not be parsed by the XML parser.

In XML elements, "<" and "&" are illegal.

"<" generates an error because the parser interprets the character as the beginning of the new element.

"&" also generates an error because the parser interprets the character as the beginning of the character entity.

Some text, such as JavaScript code, contains a large number of "<" or "&" characters. To avoid errors, you can define the script code as CDATA.

All content in the CDATA section is ignored by the parser.

CDATA part by "<! [cdata[] begins with the end of "]]>":

When writing SQL statements in the mapper file, it is recommended to use <![when encountering special characters, such as:<, etc. cdata[SQL statement]]> tag, wrap SQL statement, not parsed by parser

For example, the query here requires a symbol greater than or equal to it, but the "<" symbol in XML is illegal and cannot be parsed. The backend will also get an error, so we'll wrap the SQL here with CDATA. So you can parse it normally.

The use of CDATA tags in mapper

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.