Spring自定义标签

在读elastic-job过程中,发现使用了spring的自定义标签,当时没有细看实现原理,只关心了elastic-job的调度原理,现在开始研究dubbo源代码,dubbo服务启动第一步就是需要将服务注册到注册中心,这里读取了大量的spring自定义标签,比如等等,正好先看一下Spring自定义标签的扩展功能。

Spring自定义标签总共可以分为以下几个步骤

  • 定义Bean 标签解析生成接收配置的POJO
  • 定义schema文件,定义自定义标签的attr属性
  • 定义解析类parser,遇到自定义标签如何解析
  • 定义命名空间处理类namespaceSupport,遇到自定义的命名标签,能够路由到对应的解析类
  • 声明schema,写入spring.schema文件中
  • 声明自定义标签的命名处理类namespaceHandler,写入spring.handlers文件中

按照如上步骤,demo如下:

  • 定义bean 标签解析生成接收配置的POJO
public class User {
    private String id;
    private String userName;
    private String email;
   //省略get/set方法。
  • 定义shema文件 user有ID userName,email 三个属性


    
        
            
            
            
        
    

  • 定义parser,自定义标签解析类
package com.github.jettyrun.springtag.parser;

import com.github.jettyrun.springtag.bean.User;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser;
import org.springframework.beans.factory.xml.ParserContext;
import org.springframework.util.StringUtils;
import org.w3c.dom.Element;

/**
 * Created by jetty on 18/1/30.
 */
public class UserBeanDefinitionParser extends AbstractSingleBeanDefinitionParser {
    @Override
    protected Class getBeanClass(Element element) {
        return User.class;
    }
    

    @Override
    protected void doParse(Element element, BeanDefinitionBuilder builder) {
        String userName=element.getAttribute("userName");
        String email=element.getAttribute("email");
        if(StringUtils.hasText(userName)){
            builder.addPropertyValue("userName", userName);
        }
        if(StringUtils.hasText(email)){
            builder.addPropertyValue("email", email);
        }
    }
}

  • 定义命名空间处理类 处理user的标签
package com.github.jettyrun.springtag.namespace;


import com.github.jettyrun.springtag.parser.UserBeanDefinitionParser;
import org.springframework.beans.factory.xml.NamespaceHandlerSupport;

/**
 * Created by jetty on 18/1/30.
 */
public class UserNamespaceHandler extends NamespaceHandlerSupport{
    public void init() {

        registerBeanDefinitionParser("user",new UserBeanDefinitionParser());
    }
}
  • 声明schema,写spring.schema文件
http\://jettyrun.github.com/schema/user.xsd=META-INF/spring-user.xsd
  • 声明namespace命名空间处理类
http\://jettyrun.github.com/schema/user=com.github.jettyrun.springtag.namespace.UserNamespaceHandler

定义完成,最后,写一个main方法运行一下:

  • 定义spring标签


       xmlns:springtag="http://jettyrun.github.com/schema/user"
       xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
        http://jettyrun.github.com/schema/user http://jettyrun.github.com/schema/user.xsd">
  
    

  • main方法
package com.github.jettyrun.springtag;

import com.github.jettyrun.springtag.bean.User;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * Created by jetty on 18/1/30.
 */
public class Main {

    public static void main(String[] args) {
        ApplicationContext beans=new ClassPathXmlApplicationContext("classpath:application-usertag.xml");
        User user=(User)beans.getBean("testBean");
        System.out.println("username:"+user.getUserName()+":"+"email:"+user.getEmail());
    }
}
  • 运行结果
username:name:email:[email protected]

可以看到,user就是自己定义的一个自定义标签。
代码来自博客:http://blog.csdn.net/shinebar/article/details/75675615
代码地址:https://gitee.com/shxz130/SpringTag/
fyi

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