Spring P标签的使用

Spring的p标签是基于XML Schema的配置方式,目的是为了简化配置方式。由于Spring的p标签是spring内置的,只要在xml头部申明下就可以调用。如下:

<?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:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">

</beans>

从 2.0开始,Spring支持使用名称空间的可扩展配置格式。这些名称空间都是基于一种XML Schema定义。事实上,我们所看到的所有bean的配置格式都是基于一个 XML Schema文档。特定的名称空间并不需要定义在一个XSD文件中,它只在Spring内核中存在。我们所说的p名称空间就是这样,它不需要一个schema定义,与我们前面采用<property/>元素定义bean的属性不同的是,当我们采用了p名称空间,我们就可以在bean元素中使用属性(attribute)来描述bean的property值。具体操作请看以下示例。

【转载使用,请注明出处:http://blog.csdn.net/mahoking

本例设计对象Topic、Speech和Speaker。具体实现如下:

Topic

public class Topic {

	/**内容   必须提供     getter 与 setter 方法*/
	public String context;

	public String getContext() {
		return context;
	}

	public void setContext(String context) {
		this.context = context;
	}

	/**
	 * 有参的构造函数 ,可选
	 * @param context
	 */
	public Topic(String context) {
		this.context = context;
	}

	/**
	 * 无参数的构造函数  , 必须提供一个无参的构造函数
	 */
	public Topic() {
	}

}

Speech

public class Speech extends Topic {

	@Override
	public void setContext(String context) {
		super.context = context;
	}
}

Speaker

public class Speaker {

	/* 必须提供 getter 与 setter 方法 */
	private String name;
	private Topic highTopic;
	private Speech speech;

	private int timeHour;

	public Speech getSpeech() {
		return speech;
	}

	public void setSpeech(Speech speech) {
		this.speech = speech;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Topic getTopic() {
		return highTopic;
	}

	public void setTopic(Topic highTopic) {
		this.highTopic = highTopic;
	}

	public int getTimeHour() {
		return timeHour;
	}

	public void setTimeHour(int timeHour) {
		this.timeHour = timeHour;
	}

	/**
	 * 演讲
	 */
	public void speech() {
		System.out.println(toString());
	}

	@Override
	public String toString() {
		return "Speaker [name=" + name + ", highTopic="
				+ highTopic.getContext() + ", speech=" + speech.getContext()
				+ ", timeHour=" + timeHour + "]";
	}
}

根据以上对象代码,在不使用Spring的p标签时,相关的配置如下。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">

	<bean id="highSpeaker01" class="com.mahaochen.spring.high.learn01.Speaker">
		<property name="name" value="lily" />
		<property name="highTopic" ref="highTopic" />
		<property name="speech" ref="highSpeech" />
		<property name="timeHour" value="2" />
	</bean>
	<bean id="highTopic" class="com.mahaochen.spring.high.learn01.Topic"
		p:context="heppy new year 2015!" />
	<bean id="highSpeech" class="com.mahaochen.spring.high.learn01.Speech"
		p:context="Welcome to 2015!" />
</beans>

P标签的出现,旨在简化配置,以下是使用P标签的配置文件,对比之后就会显而易见。

<?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:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">

	<bean id="highSpeaker01" class="com.mahaochen.spring.high.learn01.Speaker"
		p:name="lily" p:topic-ref="highTopic" p:speech-ref="highSpeech"
		p:timeHour="2" />
	<bean id="highTopic" class="com.mahaochen.spring.high.learn01.Topic"
		p:context="heppy new year 2015!" />
	<bean id="highSpeech" class="com.mahaochen.spring.high.learn01.Speech"
		p:context="Welcome to 2015!" />
</beans>

从上面的bean定义中,我们采用p名称空间的方式包含了叫name、timeHour的属性,而Spring会知道我们的bean包含了一个属性(property)定义。我们前面说了,p名称空间是不需要schema定义的,因此属性(attribute)的名字就是你bean的property的名字。而第二个bean定义则采用p:topic-ref="highTopic"属性(attribute)的方式达到了同样的目的。在这个例子中,"topic"是属性(property)名,而"-ref“则用来说明该属性不是一个具体的值而是对另外一个bean的引用。

【转载使用,请注明出处:http://blog.csdn.net/mahoking

时间: 2024-12-06 20:57:00

Spring P标签的使用的相关文章

Spring 自定义标签配置

前景:经常使用一些依赖于Spring的组件时,发现可以通过自定义配置Spring的标签来实现插件的注入,例如数据库源的配置,Mybatis的配置等.那么这些Spring标签是如何自定义配置的?学习Spring标签的自定义配置为以后实现分布式服务框架做技术储备. 技术分析:Spring的标签配置是通过XML来实现的,通过XSD(xml Schema Definition)来定义元素,属性,数据类型等. Spring自定义标签解析 1.Spring启动时通过扫描根目录下的META-INF文件下的sp

spring 自定义标签 学习

自定义配置文件到spring 中,有时候想做一些数据结构的配置化信息,根据业务做一个扩展. 首先: 在项目的META-INF目录下新建两个文件spring.handlers,和spring.shcemas Spring.handlers在类org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver中已经写死了要取mapping的handlerMappingsLocation的路径 public static fina

spring 自定义标签 学习二

在上篇中写的只支持写属性,不支持标签property的写法,但是如果有时候我们还想做成支持 property的用法,则可以在xsd中增加spring 自带的xsd引用 修改xsd文件如下: <?xml version="1.0"encoding="UTF-8"?> <xsd:schema xmlns="http://www.ruishenh.com/custom/myTest" xmlns:xsd="http://ww

(转载)Spring自定义标签的原理

Spring自定义标签的原理 XML通常通过DTD.XSD定义,但DTD的表达能力较弱,XSD定义则能力比较强,能够定义类型,出现次数等.自定义标签需要XSD支持,在实现时使用Namespace扩展来支持自定义标签. <bean id="beanId" class="com.xxx.xxxx.Xxxxx"> <property name="property1"> <value>XXXX</value>

Spring Security 4 安全视图片段 使用标签(Spring Security 标签)

上一篇文章:Spring Security 4 退出 示例(带源码) 下一篇文章: Spring Security 4 基于角色的登录例子(带源码) 原文地址:http://websystique.com/spring-security/spring-security-4-secure-view-layer-using-taglibs/ [剩余文章,将尽快翻译完毕,敬请期待. 翻译by 明明如月 QQ 605283073] 本教程向你展示怎样创建安全视图层,Spring MVC web 应用中,

dubbo源码—dubbo自定义spring xml标签

dubbo为了和spring更好的集成,提供了一些xml配置标签,也就是自定义标签 spring自定义标签 spring自定义标签的方式如下: 设计配置属性和JavaBean 编写xsd文件,校验xml属性和便于编辑器提示 编写NamespaceHandler和BeanDefinitionParser解析xml对应的标签 编写spring.handlers和spring.schemas串联起所有部件,放在META_INF下面 在xml中引入对应的标签就可以使用 dubbo自定义标签 dubbo对

Spring 自定义标签

Spring 工作流程是先加载解析xml配置文件:配置文件中存在默认的标签,也可以自定义标签.解析默认标签调用: 1 private void parseDefaultElement(Element ele, BeanDefinitionParserDelegate delegate) { 2 if (delegate.nodeNameEquals(ele, IMPORT_ELEMENT)) { 3 importBeanDefinitionResource(ele); 4 } 5 else if

Spring IOC 标签的解析

Spring IOC 标签的解析 上一篇文章说了Spring中的标签包括默认标签和自定义标签两种,本节继续来研究默认标签的解析,parseBeanDefinitions方法为解析标签的总入口 protected void parseBeanDefinitions(Element root, BeanDefinitionParserDelegate delegate) { if (delegate.isDefaultNamespace(root)) { NodeList nl = root.get

spring源码剖析(二)Spring默认标签解析及注册实现

在使用spring的时候,我也经常会使用到bean标签,beans标签,import标签,aop标签等. 下面主要为读者介绍spring的默认的自带标签的解析流程. 验证模式(DTD&XSD) dtd基本已被淘汰,现在spring的验证模式基本都是采用xsd文件作为xml文档的验证模式,通过xsd文件可以检查该xml是否符合规范,是否有效.在使用xsd文件对xml文档进行校验的时候,除了要名称空间外(xmlns="http://www.springframework.org/schema