您好,登录后才能下订单哦!
今天就跟大家聊聊有关怎么在Spring中自定义NamespaceHandler,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
1、定义Bean
package com.lcl.spring.beans; public class CustomBean { public void sayHi(){ System.out.println("Hello Custom NamespaceHandler"); } }
我们想把这个类通过xml方式注入到spring容器中
NamespaceHandler的功能就是解析我们自定义的custom命名空间的,为了方便起见,我们实现NamespaceHandlerSupport,其内部通过BeanDefinitionParser对具体的标签进行处理,即对我们定义的<custom:bean/>
进行具体处理。
NamespaceHandler实现如下:
package com.lcl.spring.ext; import org.springframework.beans.factory.xml.NamespaceHandlerSupport; /** * 自定义命名空间解析器 */ public class CustomNamespaceHandler extends NamespaceHandlerSupport { @Override public void init() { // 在初始化方法中,注入标签解析器,此时我们需要解析<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(); } }
特别说明:在解析器中执行parse返回BeanDefinition并不会实现被返回的bean定义被自动注册到spring容器中,需要自己手工的执行注册中,如执行上述代码中的BeanDefinitionReaderUtils.registerBeanDefinition或使用parserContext.getRegistry().registerBeanDefinition
另外为了更方便的处理解析过程,解析器可以实现AbstractSingleBeanDefinitionParser
这个是核心的配置文件,定义了具体handler处理器,其实spring内部对context、aop、task等命名空间,也是通过此方式进行处理的。
具体内容如下:
http\://www.lcl.com/schema/custom=com.lcl.spring.ext.CustomNamespaceHandler
为了简单期间,我直接使用spring-beans-4.3.xsd文件修改,命名为custom-beans-4.3.xsd,放置在resources目录下
注意:需要修改如图所示部分
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/>
标签进行定义
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(); } }
输入结果如下:
Hello Custom NamespaceHandler
看完上述内容,你们对怎么在Spring中自定义NamespaceHandler有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。