Spring自定义标签的原理

Spring自定义标签的原理

XML通常通过DTD、XSD定义,但DTD的表达能力较弱,XSD定义则能力比较强,能够定义类型,出现次数等。自定义标签需要XSD支持,在实现时使用Namespace扩展来支持自定义标签。
当你在苦逼的写下面的代码时:
Xml代码

1 <bean id="beanId" class="com.xxx.xxxx.Xxxxx"> 
2 <property name="property1"> 
3 <value>XXXX</value> 
4 </property> 
5 <property name="property2"> 
6 <value>XXXX</value> 
7 </property> 
8 </bean> 

是不是会羡慕这样写代码呢?
Xml代码

<xxx:xxxx id="beanId"/> 

Spring通过XML解析程序将其解析为DOM树,通过NamespaceHandler指定对应的Namespace的BeanDefinitionParser将其转换成BeanDefinition。再通过Spring自身的功能对BeanDefinition实例化对象。
在期间,Spring还会加载两项资料:
META-INF/spring.handlers
指定NamespaceHandler(实现org.springframework.beans.factory.xml.NamespaceHandler)接口,或使用org.springframework.beans.factory.xml.NamespaceHandlerSupport的子类。
META-INF/spring.schemas
在解析XML文件时将XSD重定向到本地文件,避免在解析XML文件时需要上网下载XSD文件。通过现实org.xml.sax.EntityResolver接口来实现该功能。
制作自定义的标签
spring.handlers:
Xml代码

http\://test.hatter.me/schema/test=me.hatter.test.TestNamespaceHandler 

spring.schemas:

Xml代码
http\://test.hatter.me/schema/test/test.xsd=META-INF/test.xsd
test.xsd:

Xml代码

 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 
 2 <xsd:schema xmlns="http://test.hatter.me/schema/test" 
 3 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
 4 targetNamespace="http://test.hatter.me/schema/test"> 
 5 
 6 <xsd:element name="custom" type="customType"> 
 7 </xsd:element> 
 8 
 9 <xsd:complexType name="customType"> 
10 <xsd:attribute name="id" type="xsd:ID"> 
11 </xsd:attribute> 
12 <xsd:attribute name="name" type="xsd:string"> 
13 </xsd:attribute> 
14 </xsd:complexType> 
15 
16 </xsd:schema> 
17 me.hatter.test.TestNamespaceHandler:

 



Java代码

 1 package me.hatter.test; 
 2 
 3 import org.springframework.beans.factory.xml.NamespaceHandlerSupport; 
 4 
 5 public class TestNamespaceHandler extends NamespaceHandlerSupport { 
 6 
 7 public void init() { 
 8 registerBeanDefinitionParser("custom", new TestCustomBeanDefinitionParser()); 
 9 } 
10 } 
11 me.hatter.test.TestCustomBeanDefinitionParser:

Java代码

 1 package me.hatter.test; 
 2 import me.hatter.test.bean.TestBean; 
 3 import org.springframework.beans.factory.config.BeanDefinition; 
 4 import org.springframework.beans.factory.support.RootBeanDefinition; 
 5 import org.springframework.beans.factory.xml.BeanDefinitionParser; 
 6 import org.springframework.beans.factory.xml.ParserContext; 
 7 import org.w3c.dom.Element; 
 8 public class TestCustomBeanDefinitionParser implements BeanDefinitionParser { 
 9 public BeanDefinition parse(Element element, ParserContext parserContext) { 
10 String id = element.getAttribute("id"); 
11 String name = element.getAttribute("name"); 
12 RootBeanDefinition beanDefinition = new RootBeanDefinition(); 
13 beanDefinition.setBeanClass(TestBean.class); 
14 beanDefinition.getPropertyValues().addPropertyValue("name", name); 
15 parserContext.getRegistry().registerBeanDefinition(id, beanDefinition); 
16 return beanDefinition; 
17 } 
18 } 

 



测试代码
test.xml:

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:test="http://test.hatter.me/schema/test"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://test.hatter.me/schema/test http://test.hatter.me/schema/test/test.xsd">

<test:custom id="testCustom" name="this is a test custom tag" />
</beans>
me.hatter.test.main.Main:
Java代码
package me.hatter.test.main;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Main {

public static void main(String[] args) {
String xml = "classpath:me/hatter/test/main/test.xml";
ApplicationContext context = new ClassPathXmlApplicationContext(new String[] { xml });
System.out.println(context.getBean("testCustom"));
}
}
上例输出为:
TestBean[name=thisis a test custom tag]

你可能感兴趣的:(Spring自定义标签的原理)