`
gelongmei
  • 浏览: 209611 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

spring xml 命名空间关系

 
阅读更多
最近仔细看了一下spring 加载xml的流程,其中漏掉的一个环境,就是命名空间与类解析对应上的一个环节就在于:
org.springframework.beans.factory.xml.NamespaceHandlerResolver.resolve(String)
org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.parseCustomElement(Element, BeanDefinition)



org.springframework.beans.factory.xml.XmlReaderContext.getNamespaceHandlerResolver(){
this.namespaceHandlerResolver to string :以下
}

NamespaceHandlerResolverusingmappings{
http://www.springframework.org/schema/jdbc=org.springframework.jdbc.config.JdbcNamespaceHandler
http://www.springframework.org/schema/security/oauth2=org.springframework.security.oauth2.config.xml.OAuth2SecurityNamespaceHandler
http://www.springframework.org/schema/c=org.springframework.beans.factory.xml.SimpleConstructorNamespaceHandler
http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler
http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler
http://www.springframework.org/schema/mvc=org.springframework.web.servlet.config.MvcNamespaceHandler
http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring=com.googlecode.ehcache.annotations.config.AnnotationDrivenEhCacheNamespaceHandler
http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler
http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler

http://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler
http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler
http://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler
http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler
http://www.springframework.org/schema/security=org.springframework.security.config.SecurityNamespaceHandler
http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler}
分享到:
评论

相关推荐

    SpringSecurity笔记2-SpringSecurity命名空间

    SpringSecurity通过XML配置文件中的命名空间来简化设置过程,这些命名空间提供了丰富的元素和属性,帮助开发者快速构建安全体系。命名空间的主要目的是将复杂的配置逻辑封装起来,让开发者无需关注底层实现,只需...

    spring security 2.0 命名空间配置(带例子)

    在这个主题中,我们将深入探讨Spring Security 2.0的命名空间配置,并通过实例来理解其工作原理。 在Spring Security 2.0中,命名空间配置是简化安全配置的一种方式。它允许开发者使用XML配置文件中的特定命名空间...

    Spring xml 方式配制的小demo

    Spring提供了一些特定的命名空间,如`context`, `beans`, `aop`等,它们提供了更高级的功能,比如`<context:component-scan>`用于扫描带有特定注解的类,自动创建Bean。 7. ** profiles** Spring允许在不同环境下...

    Spring XML 的配置实例

    6. **命名空间和扩展**:Spring 提供了许多命名空间,如 `beans`, `context`, `aop`, `tx` 等,它们提供了更高级的功能,如 AOP(面向切面编程)、事务管理等。 7. **装配元数据**:除了 XML,Spring 还支持基于...

    xml的命名空间.md

    xml的命名空间.md

    Spring核心配置文件xml模板完整

    Spring核心配置文件xml模板,完整的命名空间和模式文档URI引用对。

    spring 自定义xml标签

    3. **注册自定义标签**:在Spring的XML配置文件中,你需要声明自定义命名空间,例如`<beans xmlns="http://www.springframework.org/schema/beans" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo">`。...

    Spring基于XML方式配置事务

    在Spring配置文件中,我们需要引入`tx`命名空间,并声明一个`PlatformTransactionManager`实例,例如,对于基于JDBC的事务管理,我们会使用`<bean id="transactionManager" class="org.springframework.jdbc....

    xml中的xmlns:、xmlns:xsi和xsi:schemaLocation.doc

    xmlns是XML命名空间(NameSpace)的缩写,用于定义XML文档中的命名空间。XML文档中的标签名称都是自定义的,可以与其他人的定义冲突。为了避免命名冲突,需要加上一个命名空间来区分不同的XML文档。例如,在Spring...

    01、基于XML的配置---命名空间

    这些文件与XML配置和命名空间的关系主要体现在`pom.xml`上,它是基于XML的配置文件,定义了项目的构建过程和依赖管理。通过引入不同的Maven插件和设置,开发者可以利用命名空间来管理和控制项目的构建和依赖关系。 ...

    Spring XML配置十二个最佳实践

    在Spring框架中,自动装配(Autowiring)是一种非常实用的功能,它能够帮助我们减少对Bean依赖关系的手动配置工作量。通过设置`autowire`属性,Spring可以根据一定的规则自动将合适的Bean注入到其他Bean中。例如: ...

    spring2.5开发参考手册

    Spring2.5继续坚持了简化企业级应用开发,同时给复杂问题提供强大的、非侵入性解决方案的发展趋向,特别是为那些使用Java 5或更新版本java的开发人员...在测试框架中支持Junit4,Spring XML命名空间的新增内容,等等

    spring security3 中文版本

    Spring Security 提供了一个简洁的命名空间,用于简化配置过程。这种设计使得开发者可以使用更少的 XML 配置来实现复杂的安全需求。 ##### 2.2 开始使用安全命名空间配置 - **配置 web.xml**:在 web.xml 文件中...

    spring famework xml配置使用示例

    Spring 2.5引入了命名空间,如`context`, `aop`, `tx`等,使配置更加简洁。例如,使用`context`命名空间进行注解驱动配置: ```xml <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi=...

    ssm命名空间

    在Spring的配置文件中,我们会看到各种命名空间,如`<context:component-scan>`用于扫描带有特定注解的类,这些类会被Spring自动管理。`<bean>`命名空间用于定义和配置Bean,它是Spring的核心概念。而`<aop:config>`...

    spring-framework-2.5.1类包

    使用注解而非XML元数据来自动侦测classpath上的Spring组件,注解对生命周期方法的支持,一个新的web控制器模型将请求映射到加注解的方法上,在测试框架中支持Junit4,Spring XML命名空间的新增内容,等等。...

Global site tag (gtag.js) - Google Analytics