`
sammor
  • 浏览: 413277 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

spring自定义标签之三 —— 自我实现

阅读更多

      引言: 最近心情比较难以平静,周末的两天就跑出去散心了,西湖边上走走,看日落,还是不错的。回来博客上发现,在自定义标签上,最后一步实现忘记加上了。其实,人生的路程中,我们总是实现着自我的价值,让自己的生活更有意义。

      在标签的定义完,也只是自我实现的一半,对于按我们的要求所定义的配置信息,自然而然的需要为这些定义各个属性进行解析和进一步的操作处理了。

 

      进一步问题: 对于前一篇(spring自定义标签之二 —— 规范定义XSD )定义下来的xml的标签定义,如何对其进行解析的问题了。

      自定义的标签如下:

<mysql:client id="sqlMapClient" datasouceip="localhsost"  characterEncoding="utf8" 
            dbname="freebug"   username="root" password="root"
            configLocation="classpath:SqlMapCommonConfig.xml" />

     

      具体实现:

      对于在spring的配置文件中已经进行了声明标签,这些可以上(上一节的规范定义已经说明了)。在上一节中也提到了,需要在资源文件中加入几个文件。

   

      其中springtag.xsd及spring.schemas是为标签定义使用的,而spring.handlers是为了进行声明解释实handler现使用的。

      在解析自定义的标签时,对于基本简单的自定义标签可以使用如下方式。继承,两个基类,进行实现。

 

 

图1. 实现自定义标签的实现类图

      被继承的基类,为spring中带有的基类:

      1、NamespaceHandlerSupport

      2、AbstractSimpleBeanDefinitionParser

      实现类为:

      1、TagsNamespaceHandler

 

package config;

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

/**
 * 注册定自义标签对应的解析类
 * 
 * @author sammor
 * @date 2011-6-27 上午10:52:44
 */
public class TagsNamespaceHandler extends NamespaceHandlerSupport {

	@Override
	public void init() {
                //自定义标签中的element标签名为client解析注册使用MysqlMapClientPraser进行.
                registerBeanDefinitionParser("client", new MysqlMapClientPraser());
	}
}

      2、MysqlMapClientPraser

package config;

import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.AbstractSimpleBeanDefinitionParser;
import org.springframework.beans.factory.xml.ParserContext;
import org.springframework.core.io.ClassPathResource;
import org.springframework.jdbc.datasource.DriverManagerDataSource;
import org.springframework.orm.ibatis.SqlMapClientFactoryBean;
import org.springframework.orm.ibatis.SqlMapClientTemplate;
import org.w3c.dom.Element;

/**
 * 标签解析处理
 * 
 * @author sammor
 * @date 2011-6-27
 */
public class MysqlMapClientPraser extends AbstractSimpleBeanDefinitionParser {

	/**
	 * element 相当于对应的element元素 parserContext 解析的上下文 builder 用于该标签的实现
	 */
	@Override
	protected void doParse(Element element, ParserContext parserContext,
			BeanDefinitionBuilder builder) {

		// 从标签中取出对应的属性值
		String dbname = element.getAttribute("dbname");
		String datasouceip = element.getAttribute("datasouceip");
		String username = element.getAttribute("username");
		String password = element.getAttribute("password");
		String characterEncoding = element.getAttribute("characterEncoding");
		String configLocation = element.getAttribute("configLocation");
		final String driverClassName = "com.mysql.jdbc.Driver";

		// System.out.println("dbname" + dbname);
		// System.out.println("datasouceip" + datasouceip);
		// System.out.println("username" + username);
		// System.out.println("password" + password);
		// System.out.println("characterEncoding" + characterEncoding);
		// System.out.println("configLocation" + configLocation);

		final StringBuffer url = new StringBuffer("jdbc:mysql://");
		url.append(datasouceip).append("/").append(dbname).append(
				"?useUnicode=true").append("&amp;").append(
				"characterEncoding=" + characterEncoding).append(
				"&amp;autoReconnect=true");

		// 创建 datasource实例
		DriverManagerDataSource datasource = new DriverManagerDataSource();
		datasource.setDriverClassName(driverClassName);
		// System.out.println(url.toString());
		datasource.setUrl(url.toString());
		datasource.setUsername(username);
		datasource.setPassword(password);

		// 创建SqlMapClientFactoryBean实例
		SqlMapClientFactoryBean sqlmapclient = new SqlMapClientFactoryBean();
		sqlmapclient.setDataSource(datasource);
		sqlmapclient.setConfigLocation(new ClassPathResource(configLocation));
		try {
			sqlmapclient.afterPropertiesSet();
		} catch (Exception e) {
			parserContext.getReaderContext().error(
					"sqlmapclient.afterPropertiesSet error", e);
		}

		// 把创建完的实例对应的传到该标签类实现的相应属性中
		builder.addPropertyValue("dataSource", datasource);
		builder.addPropertyValue("sqlMapClient", sqlmapclient.getObject());
		;
	}

	@Override
	protected Class getBeanClass(Element element) {
		// 返回该标签所定义的类实现,在这里是为了创建出SqlMapClientTemplate对象
		return SqlMapClientTemplate.class;
	}

}

    对标签的实现类写完之后,需要声明该handler。通过spring.handlers 文件进行声明:

 http\://sammor.javaeye.com/schema/tags=config.TagsNamespaceHandler

 

 

    测试环节:

    配置完成,进行测试。

    1、spring配置文件填写配置信息

<mysql:client id="sqlMapClientTemplate" datasouceip="localhost"
		dbname="freebug" characterEncoding="utf8" username="root" password="root"
		configLocation="SqlMapCommonConfig.xml" />

<bean id="usersinfoDAO" class="com.dbms.dao.UsersinfoDAOImpl">
		<property name="sqlMapClientTemplate" ref="sqlMapClientTemplate"></property>
</bean>

    2、单元测试

ApplicationContext ac = new ClassPathXmlApplicationContext(
				"classpath:applicationContext.xml");

		UsersinfoDAO user = (UsersinfoDAO) ac.getBean("usersinfoDAO");
		System.out.println("记录数:" + user.selectByExample(null).size());

   3、测试结果:

记录数:6 

   结论

         个人觉得自定义标签的应用可以很广,但如何去利用好这个便利才是一个问题,并不是把什么都自定义化才是最好的。自定义标签的目的是为了更好的方便我们的开发,对一些繁琐而又固定的东西,进行一次的封装配置化以减少问题等实现其价值的自我实现。

 

 

   相关文档:

   spring自定义标签之一 —— 意义思考

   spring自定义标签之二 —— 规范定义XSD

 

  • 大小: 98.2 KB
分享到:
评论
2 楼 haywing 2011-07-18  
有木有源码下载学习
1 楼 sammor 2011-06-27  
  	<!-- cache标签 -->
	<xsd:element name="cache">
		<xsd:complexType>
			<xsd:complexContent>
				<xsd:extension base="beans:identifiedType">
					<xsd:sequence minOccurs="0">
						<xsd:element name="config">
							<xsd:complexType>
								<xsd:choice minOccurs="1" maxOccurs="unbounded">
									<xsd:element name="servername" type="xsd:string" />
								</xsd:choice>
								<xsd:attribute name="cacheType" type="xsd:string"
									default="READ_ONLY">
								</xsd:attribute>
								<xsd:attribute name="cacheRegion" type="xsd:string"
									default="" />
								<xsd:attribute name="cacheName" type="xsd:string"
									default="USER_MEMCACHE" use="optional" />
								<xsd:attribute name="refresh.period" type="xsd:int" />
								<xsd:attribute name="capacity" type="xsd:int" />
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
				</xsd:extension>
			</xsd:complexContent>
		</xsd:complexType>
	</xsd:element>


对下面的定义
   <kb:cache id="cache">
		<kb:config refresh.period="5000" capacity="156564">
			<kb:servername>mc1.member.cache.net:11211</kb:servername>
			<kb:servername>mc1.member.cache.net:11211</kb:servername>
			<kb:servername>mc1.member.cache.net:11211</kb:servername>
			<kb:servername>mc1.member.cache.net:11211</kb:servername>
		</kb:config>
	</kb:cache>

相关推荐

    spring自定义标签例子

    在Spring框架中,自定义标签是一项非常实用的功能,它允许我们创建符合XML语法的自定义元素,以便在配置文件中更方便地表达业务逻辑。在"spring自定义标签例子"这个项目中,我们可以深入理解这一特性,特别是通过...

    spring 自定义xml标签

    本文将深入探讨如何在Spring中自定义XML标签,以及其背后的原理和实现过程。 首先,我们需要理解Spring XML配置的核心——Bean定义。Spring通过解析XML文件中的`&lt;bean&gt;`标签来创建和管理对象,但有时候,`&lt;bean&gt;`...

    Spring 5.2.9 06 源码分析-spring自定义标签解析过程

    在Spring中,自定义标签通常是通过实现`org.springframework.beans.factory.xml.NamespaceHandler`接口来创建的。这个接口定义了两个主要方法:`init()`用于初始化命名空间处理器,以及`parseElement(Element ...

    自定义精简版dubbo,运用spring自定义标签、netty、zookeeper、ImportBeanDefinition实现

    自定义精简版dubbo,运用spring自定义标签、netty、zookeeper、ImportBeanDefinition实现

    spring mvc freemarker 自定义标签

    下面将详细介绍Spring MVC与Freemarker自定义标签的使用。 首先,我们需要了解Freemarker的基础。Freemarker是一个基于模板的语言,它的主要任务是根据数据模型生成输出。在Spring MVC中,Freemarker模板通常用于...

    spring自定义标签

    在Spring框架中,自定义标签是一项非常实用的功能,它允许我们创建自己的XML标签来简化配置,提高代码可读性,并实现特定的业务逻辑。本文将深入探讨Spring自定义标签的概念、实现过程及其在实际开发中的应用。 ...

    Spring 实现远程访问详解——httpinvoker

    上文我们利用Spring rmi实现了Spring的远程访问(Spring 实现远程访问详解——rmi),本文主要讲解利用HttpInvoke实现远程访问。 Spring httpInvoker使用标准java序列化机制,通过Http暴露业务服务。如果你的参数和...

    06 源码分析-spring自定义标签解析过程

    本节将深入探讨Spring 5.2.9版本中自定义标签的解析机制,以及背后的源码实现。 首先,Spring XML配置文件中的自定义标签是由Spring的`BeanDefinitionParser`接口处理的。这个接口定义了`parse()`方法,用于解析...

    这一次搞懂Spring自定义标签以及注解解析原理说明

    总结起来,Spring的自定义标签解析是通过`NamespaceHandler`机制实现的,而注解解析则依赖于类路径扫描和`BeanDefinition`的创建。这两者都是Spring实现声明式编程和依赖注入的重要组成部分,极大地简化了Spring应用...

    这一次搞懂Spring自定义标签以及注解解析原理说明.docx

    在Spring框架中,自定义标签和注解解析是核心功能之一,它们允许开发者根据特定需求扩展和定制Spring的配置方式。本文将深入探讨这两个概念的解析原理,帮助读者理解Spring如何处理自定义标签和注解。 首先,让我们...

    spring-扩展点-namespacehandler(Spring自定义标签)

    通过实现`org.springframework.beans.factory.xml.NamespaceHandler`接口,我们可以定义自己的处理逻辑,将自定义标签转换为Spring能够理解的Bean定义。 `spring-web-namespacehandler`通常包含Spring MVC相关的...

    spring 自定义属性编辑器

    - 配置文件注册:在Spring的XML配置文件中,通过`&lt;bean&gt;`标签的`property-editorRegistrar`属性指定一个实现了`PropertyEditorRegistrar`接口的类。在该类的`registerEditors()`方法中,可以使用`...

    spring自定义注解样例

    本示例主要探讨如何在Spring中创建和使用自定义注解,以及与AOP结合实现动态代理。 首先,我们需要了解自定义注解的基本结构。在Java中,自定义注解是以`@interface`关键字定义的。例如,我们可以创建一个名为`...

    spring security进级篇 V 自定义标签控制显示

    这篇"Spring Security进阶篇 V 自定义标签控制显示"的博客文章显然深入探讨了如何在Spring Security中实现自定义的安全控制,以便更好地管理和展示应用内容。在本文中,我们将详细解析这个主题,并与"JSP自定义标签...

    扩展自定义Spring标签思维导图

    实现spring自定义扩展标签的实现步骤

    Spring 自定义注解的解析

    总的来说,Spring自定义注解的解析是一个强大且灵活的工具,可以帮助我们实现更精细化的代码组织和控制。结合`@ComponentScan`,我们可以轻松地在Spring环境中管理和利用自定义注解,进一步提升代码的可读性和可维护...

    spring自定义切面实例

    描述:本文档将深入探讨如何在Spring框架中实现自定义切面(Aspect),并提供具体的代码示例。通过利用Spring的AOP(面向切面编程)特性,特别是@AspectJ注解的支持,我们可以创建灵活、可重用的业务逻辑切面,从而...

    freemark 自定义标签 总结

    自定义标签可以与Spring MVC、Struts2等框架集成,提供更丰富的功能。 通过上述内容,我们了解了Freemarker自定义标签的基本概念、创建与使用方法,以及如何在实际项目中发挥作用。自定义标签极大地增强了...

    Spring自定义配置文件便签[Maven]工程可运行

    这个名为"Spring自定义配置文件便签[Maven]工程可运行"的项目,显然是一个基于Maven构建的Spring 5.0应用程序,它包含了自定义配置文件和标签的实现。让我们深入探讨一下这些概念及其在实际应用中的作用。 首先,...

Global site tag (gtag.js) - Google Analytics