SSH配置文件头解析

SSH配置文件头解析

在使用SSH框架时,各种配置文件,文件头声明一堆xmlns...。都是什么意思?

简单看看Spring的配置文件:

<beans
       xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       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-4.3.xsd
           http://www.springframework.org/schema/aop 
           http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
           http://www.springframework.org/schema/tx 
           http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">
    <!-- 1、xmlns="http://www.springframework.org/schema/beans"
            声明xml文件默认的命名空间,表示未使用其他命名空间的所有标签的默认命名空间。

         2、xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            声明XML Schema 实例,声明后就可以使用 schemaLocation 属性了

         3、xmlns:aop="http://www.springframework.org/schema/mvc"
            声明前缀为mvc的命名空间,后面的URL用于标示命名空间的地址不会被解析器用于查找信息。
            其惟一的作用是赋予命名空间一个惟一的名称。当命名空间被定义在元素的开始标签中时,
            所有带有相同前缀的子元素都会与同一个命名空间相关联。

        4、xsi:schemaLocation="
            http://www.springframework.org/schema/beans 
            http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
              这个从命名可以看出个大概,指定Schema的位置这个属性必须结合命名空间使用。
              这个属性有两个值,第一个值表示需要使用的命名空间。第二个值表示供命名空间使用的 XML schema 的位置 -->  

        <bean id="helloWorld" class="com.test.HelloWorld"></bean>  
        <aop:config>
             <aop:pointcut 
                expression="execution(* com.test.PersonDaoImpl.*(..))" 
                id="perform"/>
             <aop:aspect ref="transaction">
                  <aop:before method="beginTransaction" pointcut-ref="perform"/>
                  <aop:after-returning method="commit" pointcut-ref="perform"/>
             </aop:aspect>
        </aop:config> 
        <tx:advice id="tx" transaction-manager="transactionManager">
            <tx:attributes>
               <tx:method name="save*"
                   isolation="DEFAULT"
                   propagation="REQUIRED"
                   read-only="false"/>
            </tx:attributes>
        </tx:advice>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 135,248评论 19 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,999评论 6 342
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 174,449评论 25 709
  • 今天是来台湾第122天,距离上一次10件小事系列,已经将近60天过去了,眼看着离境的日子越来越近,我觉得应该告诉大...
  • 1.人生若只如初见,何事秋风悲画扇 世界上有七色花,各类五彩缤纷的事,小时候的童颜无忌,长大后的幽默童真,成熟后的...
    简单的桃桃阅读 308评论 0 1