xml笔记:3 引入xsd来编写xml

前端之家收集整理的这篇文章主要介绍了xml笔记:3 引入xsd来编写xml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

说明:

xsi:schemaLocation="http://www.nl.org/mapper"

引入xsd文件

xmlns="http://www.nl.org/mapper"


默认命名空间



mapper.xml


<?xml version="1.0" encoding="UTF-8"?>
<mapper namespace="UserDemo" 
		xmlns="http://www.nl.org/mapper"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xsi:schemaLocation="http://www.nl.org/mapper" >
		<select id="query">
			select * from user u
			<if property="name" notNull=""/>
		</select>
		<select id=""></select>
		<insert id="insert">
			insert into user(id) values(#id)
			<if property="name" notNull=""></if>
		</insert>
</mapper>
原文链接:https://www.f2er.com/xml/298558.html

猜你在找的XML相关文章