要问当下Java的什么技术在实际生产开发中最流行,那当然是Spring全家桶,Spring为实际开发提供了丰富的技术支持,本篇文章从Spring基础出发,理解Spring配置的约束信息的含义,以避免大家在实际开发中为寻找Spring配置的约束信息而苦恼。
一、常用的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:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
<!--配置文件部分-->
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="find*" propagation="NOT_SUPPORTED" />
</tx:attributes>
</tx:advice>
<aop:config>
<aop:aspect id="***" ref="***"/>
<aop:pointcut id="***" expression="****" />
</aop:config>
<!--中间是配置文件部分-->
</beans>
二、命名空间
命名空间是由国际化资源标识符 (IRI) 标识的 XML 元素和属性集合,简单点说,就是为你的核心配置提供标签使用的限定范围的一个约束信息。每个配置文件最多有一个默认的命名空间,当没有默认命名空间时,就得手动配置标签头寻找标签,即不带前缀的xmlns约束
xmlns="http://www.springframework.org/schema/beans"
但是例如带前缀的约束,如
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
分别提供了xsi、context、aop、tx代表的对应命名空间的元素,意思就是你的配置文件的标签元素必须来自于你配置的约束范围,否则无法找到标签。例如上面代码中的如下部分使用的标签<bean/>就是来自默认命名空间、<tx:advice/>标签就是来自 xmlns:tx="http://www.springframework.org/schema/tx"命名空间,类似地,其他的标签也是来自相应的命名空间。
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="find*" propagation="NOT_SUPPORTED" />
</tx:attributes>
</tx:advice>
<aop:config>
<aop:aspect id="***" ref="***"/>
<aop:pointcut id="***" expression="****" />
</aop:config>
那么,为什么会有schemaLocation的配置呢?顾名思义,找到标签命名空间对应的Location,也就是地址呗,配置成你需要使用的版本地址即可。另外,例如你要使用ref注入你自己配置的bean的name的时候,如果没有默认的命名空间,你必须自己手动加上bean命名空间的前缀。
三、Spring配置文件的命名空间
spring 整合了各种工具,并且spring提供了对各种工具的xml scheme 的配置方式,简化了开发。对于各种工具的xml命名空间的引入,我们也应该有一个比较清楚的认识。Spring在启动时是要检验XML文件的。如果xml空间存在命名空间内没有的元素是要报错的。通常情况下,命名空间对应的URI是一个存放XSD的地址,尽管规范没有这么要求。如果没有提供schemaLocation,那么Spring的XML解析器会从命名空间的URI里加载XSD文件。
四、Spring如何去寻找XML对应的地址
Spring默认在启动时是要从配置的命名空间的位置加载XSD文件来验证xml文件的,所以如果有的时候断网了,或者一些开源软件切换域名,那么就很容易碰到应用启动不了。为了防止这种情况,Spring提供了一种机制,即默认从本地加载XSD文件,当本地没有时才根据实际的URI去联网获得。我们打开Spring-aop-4.1.6RELEASE.jar (这是我本地的版本),这个包下有一个META_INF文件夹,其中有两个文件:spring.handlers和spring.schemas。
spring.handlers:
http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler
spring.schemas:
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd=org/springframework/aop/config/spring-aop-3.0.xsd
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd=org/springframework/aop/config/spring-aop-3.1.xsd
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd=org/springframework/aop/config/spring-aop-3.2.xsd
http://www.springframework.org/schema/aop/spring-aop-4.0.xsd=org/springframework/aop/config/spring-aop-4.0.xsd
http://www.springframework.org/schema/aop/spring-aop-4.1.xsd=org/springframework/aop/config/spring-aop-4.1.xsd
http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-4.1.xsd
Spring是把XSD文件放到本地了,再在spring.schemas里做了一个映射,优先从本地里加载XSD文件。所以系统可以离线情况下从本地加载相关的xsd信息。
五、总结
1.Spring配置文件的约束信息可根据自己的需求进行配置,再也不用纠结哪些命名空间需要哪些不需要。
2.企业级开发中,大部分都是用自己封装的标签,原理其实相同,配置方式完全一致。