溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在Spring中自定義NamespaceHandler

發(fā)布時間:2021-04-16 15:55:03 來源:億速云 閱讀:309 作者:Leah 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)怎么在Spring中自定義NamespaceHandler,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

1、定義Bean

package com.lcl.spring.beans;

public class CustomBean {
    public void sayHi(){
        System.out.println("Hello Custom NamespaceHandler");
    }
}

我們想把這個類通過xml方式注入到spring容器中

2、編寫自定義NamespaceHandler

NamespaceHandler的功能就是解析我們自定義的custom命名空間的,為了方便起見,我們實現(xiàn)NamespaceHandlerSupport,其內(nèi)部通過BeanDefinitionParser對具體的標(biāo)簽進(jìn)行處理,即對我們定義的<custom:bean/>進(jìn)行具體處理。

NamespaceHandler實現(xiàn)如下:

package com.lcl.spring.ext;

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

/**
 * 自定義命名空間解析器
 */
public class CustomNamespaceHandler extends NamespaceHandlerSupport {

    @Override
    public void init() {
        // 在初始化方法中,注入標(biāo)簽解析器,此時我們需要解析<custom:bean/>
        registerBeanDefinitionParser("bean", new CustomBeanDefinitionParser());
        // 注入其他解析器...
    }
}

解析器代碼:

package com.lcl.spring.ext;

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

/**
 * 自定義解析器
 */
public class CustomBeanDefinitionParser implements BeanDefinitionParser {

    @Override
    public BeanDefinition parse(Element element, ParserContext parserContext) {
        // 為了演示方便起見,使用BeanDefinitionParserDelegate解析bean definition
        BeanDefinitionHolder beanDefinitionHolder = parserContext.getDelegate().parseBeanDefinitionElement(element);
        // 使用工具類注冊
        BeanDefinitionReaderUtils.registerBeanDefinition(beanDefinitionHolder, parserContext.getRegistry());
        // 或是使用注冊器注冊
        //parserContext.getRegistry().registerBeanDefinition(beanDefinitionHolder.getBeanName(),beanDefinitionHolder.getBeanDefinition());
        return beanDefinitionHolder.getBeanDefinition();
    }
}

特別說明:在解析器中執(zhí)行parse返回BeanDefinition并不會實現(xiàn)被返回的bean定義被自動注冊到spring容器中,需要自己手工的執(zhí)行注冊中,如執(zhí)行上述代碼中的BeanDefinitionReaderUtils.registerBeanDefinition或使用parserContext.getRegistry().registerBeanDefinition

另外為了更方便的處理解析過程,解析器可以實現(xiàn)AbstractSingleBeanDefinitionParser

3、編寫spring.handlers文件

這個是核心的配置文件,定義了具體handler處理器,其實spring內(nèi)部對context、aop、task等命名空間,也是通過此方式進(jìn)行處理的。
具體內(nèi)容如下:

http\://www.lcl.com/schema/custom=com.lcl.spring.ext.CustomNamespaceHandler

4、編寫XSD文件

為了簡單期間,我直接使用spring-beans-4.3.xsd文件修改,命名為custom-beans-4.3.xsd,放置在resources目錄下

怎么在Spring中自定義NamespaceHandler

注意:需要修改如圖所示部分

5、編寫spring.schemas

http\://www.lcl.com/schema/custom.xsd=custom-beans-4.3.xsd

6、編寫spring配置文件

<?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:custom="http://www.lcl.com/schema/custom"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.lcl.com/schema/custom http://www.lcl.com/schema/custom.xsd">
    <custom:bean class="com.lcl.spring.beans.CustomBean"></custom:bean>
</beans>

使用了我們自定義的<custom:bean/>標(biāo)簽進(jìn)行定義

7、測試

package com.lcl.spring;

import com.lcl.spring.beans.CustomBean;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class SpringCustomNamespaceHandlerDemo {
    public static void main(String[] args) {
        ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("context.xml");
        CustomBean bean = applicationContext.getBean(CustomBean.class);
        bean.sayHi();
    }
}

輸入結(jié)果如下:

Hello Custom NamespaceHandler

看完上述內(nèi)容,你們對怎么在Spring中自定義NamespaceHandler有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI