Spring5 扩展篇之自定义xml标签

本篇文章主要讲一下Spring 如何取自定义自己的XML标签:

1. 首先要自定义自己的XSD文件

说明:

首先这个文件最好建立在静态资源resource文件夹下,我为了方便都将文件建立在了resource/META-INF下了,包括spring.handlersspring.schemas这三个文件都在该目录下:

Spring5 扩展篇之自定义xml标签

mytag.xsd文件如下:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://hellospring.vipbbo.com/schema/tag"
targetNamespace="http://hellospring.vipbbo.com/schema/tag"
elementFormDefault="qualified">
<xsd:element name="model">
<xsd:complexType>
<xsd:attribute name="name" type="xsd:string">
</xsd:attribute>
<xsd:attribute name="age" type="xsd:int">
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:schema>
  • 说明

首先这个

  1. **xmlns:xsd=”http://www.w3.org/2001/XMLSchema” **必须要写
  2. xmlns=“http://hellospring.vipbbo.com/schema/tag”和 ** targetNamespace=**”http://hellospring.vipbbo.com/schema/tag”这两个参数需要保持一致。
2. 定义一个和XSD文件所对应的实体类

代码如下:

package com.vipbbo.spring.bean.customtag;

public class Model {
private String name;

private Integer age;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public Integer getAge() {
return age;
}

public void setAge(Integer age) {
this.age = age;
}
}

3. 创建一个自定义的BeanDefinitionParser实现BeanDefinitionParser

代码如下:

package com.vipbbo.spring.bean.customtag;

import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.GenericBeanDefinition;
import org.springframework.beans.factory.xml.BeanDefinitionParser;
import org.springframework.beans.factory.xml.ParserContext;
import org.w3c.dom.Element;

public class MyBeanDefinitionParser implements BeanDefinitionParser {

private final Class<?> beanClass;

public MyBeanDefinitionParser(Class<?> beanClass) {
this.beanClass = beanClass;
}


@Override
public BeanDefinition parse(Element element, ParserContext parserContext) {
GenericBeanDefinition genericBeanDefinition = new GenericBeanDefinition();
genericBeanDefinition.setBeanClass(beanClass);
genericBeanDefinition.setLazyInit(false);
genericBeanDefinition.getPropertyValues().add("name", element.getAttribute("name"));
genericBeanDefinition.getPropertyValues().add("age", element.getAttribute("age"));
parserContext.getRegistry().registerBeanDefinition(beanClass.getName(),genericBeanDefinition);
return null;
}
}
4. 创建一个NamespaceHandler继承自NamespaceHandlerSupport

代码如下:

package com.vipbbo.spring.bean.customtag;

import org.springframework.beans.factory.xml.NamespaceHandlerSupport;

public class MyNameSpaceHandler extends NamespaceHandlerSupport {
@Override
public void init() {
registerBeanDefinitionParser("model",new MyBeanDefinitionParser(Model.class));
}
}

PS:文件ModelMyBeanDefinitionParserMyNameSpaceHandler项目层级如下:

Spring5 扩展篇之自定义xml标签
5. 编写前面提到的spring.handlers和spring.schemas两个文件

spring.handlers文件内容如下:

http://hellospring.vipbbo.com/schema/tag=com.vipbbo.spring.bean.customtag.MyNameSpaceHandler

spring.schemas文件内容如下:

http://hellospring.vipbbo.com/schema/tag/mytag.xsd=META-INF/mytag.xsd

PS:

这两个文件都是properties格式的文件,这两个文件和开头的那个xsd都要放在resource目录下的META-INF文件夹下,再注意Spring.Handlers中的key是要和上面xsd中你自己定义的xmlns一致,value一定要指向你自己定义的NameSpaceHandler的全路径,Spring.schemas中key前半部分是自己定义的xmlns,后半部分的mytag.xsd就是你自己xsd的文件名.

6. 编写xml

custom-tag.xml文件内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mytag="http://hellospring.vipbbo.com/schema/tag"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://hellospring.vipbbo.com/schema/tag
http://hellospring.vipbbo.com/schema/tag/mytag.xsd
">

<!-- <bean id="myTestTag" class="com.vipbbo.spring.bean.customtag.MyTagTest" name="tagTest"/>-->

<mytag:model name="paidaxing" age="18"/>
</beans>
7. 编写测试类
package com.vipbbo.spring.bean.customtag;

import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTagTest {

@Test
public void TagTest(){
ApplicationContext ac =
new ClassPathXmlApplicationContext("custom-tag.xml");
Model model = (Model) ac.getBean(Model.class.getName());
System.out.println(model.getAge());
System.out.println(model.getName());
}
}

运行结果如下:

Spring5 扩展篇之自定义xml标签

如果出现上述情况:

那么恭喜你,你已经可以自己定义一个灰常简单的xml标签了


原文始发于微信公众号(码上遇见你):Spring5 扩展篇之自定义xml标签

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/78630.html

(0)
小半的头像小半

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!