Junhc

岂止于博客

基于Spring可扩展Schema提供自定义配置支持

Spring提供了可扩展Schema的支持,完成一个自定义配置一般需要以下步骤:

  • 一、定义JavaBean配置属性
  • 二、编写XSD文件
  • 三、编写NamespaceHandler和BeanDefinitionParser完成解析工作
  • 四、编写spring.handlers和spring.schemas串联起所有部件
  • 五、在XML文件中应用自定义Schema
一、定义JavaBean配置属性
public class OccPropertyPlaceholderConfigurer {
  private String pool;
  private Integer type;
  ...
}
二、编写XSD文件

为上一步设计好的配置项编写XSD文件,XSD是schema的定义文件,配置的输入和解析输出都是以XSD为契约,如下:

// occ-client.xsd
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="http://xxx.xxx.xxx/schema/occ-client"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            targetNamespace="http://xxx.xxx.xxx/schema/occ-client"
            elementFormDefault="qualified"
            attributeFormDefault="unqualified">
    <xsd:import namespace="http://www.springframework.org/schema/beans"/>

    <xsd:element name="configure">
        <xsd:complexType mixed="true">
            <xsd:attribute name="id" type="xsd:string"></xsd:attribute>
            <xsd:attribute name="pool" type="xsd:string"></xsd:attribute>
            <xsd:attribute name="type" type="xsd:integer"></xsd:attribute>
        </xsd:complexType>
    </xsd:element>


</xsd:schema>

关于xsd:schema的各个属性具体含义就不作过多解释,可以参见Schema 教程

<xsd:element name="configure">对应着配置项节点的名称,因此在应用中会用configure作为节点名来引用这个配置

<xsd:attribute name="pool" type="xsd:string" /><xsd:attribute name="type" type="xsd:integer" />对应着配置项configure的两个属性名,因此在应用中可以配置pool和type两个属性,分别是String和Integer类型

完成后需把xsd存放在classpath下,一般都放在META-INF目录下

三、编写NamespaceHandler和BeanDefinitionParser完成解析工作

具体说来NamespaceHandler会根据schema和节点名找到某个BeanDefinitionParser,然后由BeanDefinitionParser完成具体的解析工作。
因此需要分别完成NamespaceHandlerBeanDefinitionParser的实现类,Spring提供了默认实现类NamespaceHandlerSupportAbstractSingleBeanDefinitionParser,简单的方式就是去继承这两个类。

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

public class OccHandler extends NamespaceHandlerSupport {
    public OccHandler() {
    }

    public void init() {
        this.registerBeanDefinitionParser("configure", new OccDefinitionParser());
    }
}

其中registerBeanDefinitionParser("configure", new OccDefinitionParser());
就是用来把节点名和解析类联系起来,在配置中引用configure配置项时,就会用OccDefinitionParser来解析配置。

import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser;
import org.springframework.util.StringUtils;
import org.w3c.dom.Element;

public class OccDefinitionParser extends AbstractSingleBeanDefinitionParser {
    public OccDefinitionParser() {
    }

    protected Class<OccPropertyPlaceholderConfigurer> getBeanClass(Element element) {
        return OccPropertyPlaceholderConfigurer.class;
    }

    protected void doParse(Element element, BeanDefinitionBuilder bean) {
        String pool = element.getAttribute("pool");
        if (StringUtils.hasText(pool)) {
            bean.addPropertyValue("pool", pool);
        }

        String type = element.getAttribute("type");
        if (StringUtils.hasText(searchType)) {
            bean.addPropertyValue("type", Integer.valueOf(type));
        }
    }
    ...

其中element.getAttribute就是获取配置中的属性值,bean.addPropertyValue就是把属性值设置到bean中。

四、编写spring.handlers和spring.schemas串联起所有部件

上面几个步骤走下来会发现开发好的handlerxsd还没法让应用感知到,就这样放上去是没法把前面做的工作纳入体系中的,Spring提供了spring.handlersspring.schemas这两个配置文件来完成这项工作,这两个文件需要我们自己编写并放入META-INF文件夹中,这两个文件的地址必须是META-INF/spring.handlersMETA-INF/spring.schemas,Spring会默认加载它们。

// spring.handlers
http\://xxx.xxx.xxx/schema/occ-client=xxx.xxx.xxx.OccHandler

// spring.schemas
http\://xxx.xxx.xxx/schema/occ-client.xsd=META-INF/occ-client.xsd
五、在XML文件中应用自定义Schema
<?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:occ-client="http://xxx.xxx.xxx/schema/occ-client"  
    xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
http://xxx.xxx.xxx/schema/occ-client.xsd">  
    <occ-client:configure id="occConfigurer" pool="trade"/>
</beans>

其中xmlns:occ-client用来指定自定义schema,xsi:schemaLocation用来指定xsd文件。