`
ponlya
  • 浏览: 164355 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

Spring3之xsd

阅读更多

2.5

 

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	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-2.5.xsd
			http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
			http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
	......
</beans>

 

 

3.0

 

	<beans xmlns="http://www.springframework.org/schema/beans"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xmlns:aop="http://www.springframework.org/schema/aop"
		xmlns:tx="http://www.springframework.org/schema/tx"
		xmlns:jdbc="http://www.springframework.org/schema/jdbc"
		xmlns:context="http://www.springframework.org/schema/context"
		xmlns:util="http://www.springframework.org/schema/util"
		xsi:schemaLocation="
	     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
	     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
	     http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
	     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-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/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
	     ">
	......
	</beans>

 

 

 

Spring3中的xsd文件的位置

org.springframework.beans.factory.xml包下

同目录下还有Srping-beans.dtd Srping-beans-2.0.dtd

Srping-beans-2.0.xsd Srping-beans-2.5.xsd Srping-beans-3.0.xsd

Srping-tool-2.0.xsd Srping-tool-2.5.xsd Srping-tool-3.0.xsd

Srping-util-2.0.xsd Srping-util-2.5.xsd Srping-util-3.0.xsd

org.springframework.aop.config.包下

Srping-aop-2.0.xsd Srping-aop-2.5.xsd Srping-aop-3.0.xsd

org.springframework.jdbc.config 包下Srping-jdbc-3.0.xsd

org.springframework.transaction.config.包下

Srping-tx-2.0.xsd Srping-tx-2.5.xsd Srping-tx-3.0.xsd

org.springframework.context.config包下

Srping-context-2.5.xsd Srping-context-3.0.xsd

添加xsd到本地:window - preferences - Myeclipse enterprise - Files and Editors - xml - xml catalog - Add

然后key typeurl,然后在location里导入导入

 

 

 

xsd文件

参考From:http://wenku.baidu.com/view/3b9ff43a580216fc700afd1a.html 

一、xmlns="http://www.springframework.org/schema/beans" 定义当前文档的默认的命名空间.

二、xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   定义命名空间,xsi这个命名空间是w3c定义的,使用它的原因 是下面"xsi:schemaLocation=" 中的schemaLocation属性是在http://www.w3.org/2001/XMLSchema-instance中定义的,所以要使用这个属性,就得引入它所在的命名空间.

三、xsi:schemaLocation="  schemaLocation属性的作用是用于指定名称空间所对应的XMLSchema模式文档在中里.这个属性在前面定义的xsi名称空间中,所以必须在前面加上表示其名称空间的前缀。设置值包括二部分:a)命名空间的URIb)名称空间所标识的XML Schema文件的位置或者URL地址,这二个部分使用空格分隔。

EG:http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd


 


XSD是指XML结构定义 ( XML Schemas Definition )

From:http://zhidao.baidu.com/question/74740740.html ):

XML Schema DTD的替代品。XML Schema语言也就是XSD

XML Schema描述了XML文档的结构。可以用一个指定的XML Schema来验证某个XML文档,以检查该XML文档是否符合其要求。文档设计者可以通过XML Schema指定一个XML文档所允许的结构和内容,并可据此检查一个XML文档是否是有效的。XML Schema本身是一个XML文档,它符合XML语法结构。可以用通用的XML解析器解析它。

  一个XML Schema会定义:文档中出现的元素、文档中出现的属性、子元素、子元素的数量、子元素的顺序、元素是否为空、元素和属性的数据类型、元素或属性的默认和固定值。

  XSDDTD替代者的原因,一是据将来的条件可扩展,二是比DTD丰富和有用,三是用XML书写,四是支持数据类型,五是支持命名空间。

  XSD文件的后缀名为.xsd

  XML Schema的优点:

  1) XML Schema基于XML,没有专门的语法 

  2) XML可以象其他XML文件一样解析和处理 

  3) XML Schema支持一系列的数据类型(intfloatBooleandate

  4) XML Schema提供可扩充的数据模型。 

  5) XML Schema支持综合命名空间 

  6) XML Schema支持属性组。

Xsd可参考:http://bdk82924.iteye.com/blog/721443 

 

分享到:
评论

相关推荐

    Spring项目的xsd文件大全

    3. SpringCloud的XSD文件: Spring Cloud是一个建立在Spring Boot基础上的工具集,用于快速构建分布式系统,如服务发现、配置中心、断路器等。Spring Cloud的相关XSD文件如`spring-cloud-netflix.xsd`包含了Eureka...

    spring-cache.xsd+spring-encache.xsd

    标题中的"spring-cache.xsd+spring-encache.xsd"提到了两个XML Schema定义文件,它们是Spring框架中用于缓存管理的配置规范。Spring框架是一个广泛应用的Java企业级应用开发框架,它提供了多种功能,包括但不限于...

    spring 4.25版本 xsd文件

    3. **spring-cache.xsd**:这个文件提供了缓存管理的支持,使得我们可以方便地在应用中集成各种缓存解决方案,如EhCache、Guava Cache或Hibernate二级缓存。通过配置,开发者可以定义缓存策略、设置缓存超时时间等。...

    spring3.0的xsd文件.rar

    XSD(XML Schema Definition)文件在Spring框架中扮演着核心角色,它们定义了Spring配置文件的结构和规则,使得XML配置更加规范和易于理解。在这个压缩包中,我们很可能是找到了Spring 3.0版本相关的XSD文件集合,...

    spring5.0的全部xsd文件

    3. `aop.xsd`:定义了面向切面编程(AOP)的配置元素,如`&lt;aop:config&gt;`、`&lt;aop:aspect&gt;`等,允许我们创建切面和通知。 4. `tx.xsd`:处理事务管理,包含`&lt;tx:annotation-driven&gt;`等元素,用于启用基于注解的事务...

    spring-context.xsd

    《Spring上下文(spring-context.xsd):理解DI与代码提示》 在Java开发领域,Spring框架是一个不可或缺的工具,其强大的依赖注入(Dependency Injection,简称DI)特性使得应用程序的构建变得更加灵活和易于管理。...

    spring-context-3.2.xsd

    spring-context-3.2.xsd

    spring3.0 xsd文件

    Spring 3.0 XSD 文件是Spring框架在3.0版本中使用的XML Schema定义文件,它们主要用于配置Spring框架的应用上下文和服务。XSD文件的作用在于为XML配置提供结构化约束和验证,确保开发者遵循正确的格式编写配置。在...

    spring相关的xsd文件

    3. `aop`: 面向切面编程,Spring的AOP模块提供了声明式事务管理、日志记录、性能监控等功能。`aop`文件定义了切点、通知、顾问和代理等概念的配置元素。 4. `mvc`: MVC模块是Spring Web应用的核心,用于构建Web应用...

    spring-beans-1.3.xsd

    spring-beans-4.3.xsd spring-beans-4.3.xsd spring-beans-4.3.xsd spring-beans-4.3.xsd

    spring-aop.xsd

    `spring-aop.xsd`文件是Spring AOP配置的XML Schema定义文件,用于指导和验证XML配置中的元素和属性,确保其符合规范,同时也为IDE提供代码提示和自动补全功能,提高开发效率。 在Java开发中,AOP(Aspect Oriented...

    Spring-3.0.xsd

    Spring的核心之一就是它的XML配置,而Spring-3.0.xsd则是Spring框架3.0版本的XML schema定义文件,它规定了如何在XML配置文件中正确地声明和配置Spring的各种组件。本文将深入探讨Spring-3.0.xsd,了解其结构、元素...

    spring-context-4.2.xsd.zip

    《Spring框架中的Context模块与XSD配置详解》 在Java企业级开发中,Spring框架扮演着至关重要的角色,尤其在Spring的Context模块中,通过XML Schema(XSD)进行配置,使得应用程序的组件管理和依赖注入变得简洁高效...

    spring-beans-4.2xsd 文件下载

    Spring默认在启动时是要加载XSD文件来验证xml文件的,所以如果有的时候断网了,或者一些开源软件切换域名,那么就很容易碰到应用启动不了。我记得当时Oracle收购Sun公司时,遇到过这个情况。为了防止这种情况,...

    spring的部分常用xsd文件,包含mvc,aop,beans,tx,task多个版本

    3. **Spring Beans**: `spring-beans.xsd`是Spring的核心配置文件,它定义了如何声明和管理Bean,如`&lt;bean&gt;`元素用于定义一个Bean实例,`&lt;property&gt;`元素用来设置Bean的属性,`&lt;import&gt;`引入其他配置文件等。 4. ...

    spring-aop-3.0.xsd spring-beans-3.0 spring-context-3.0.xsd spring-mvc-3.1.xsd

    3. **spring-context-3.0.xsd**: Spring Context 是 Spring 框架的扩展,它提供了更丰富的上下文环境,包括国际化、事件广播、AOP 代理等功能。`spring-context-3.0.xsd` 文件包含了在上下文环境中配置的各种元素...

    spring 自定义xsd

    Spring框架通过提供自己的XSD,为开发者提供了声明式配置的方式。 在Spring中自定义XSD,开发者可以创建自己的扩展,以便在XML配置文件中定义特定的bean或行为。这个过程对于那些希望对Spring配置进行模块化或者...

    spring-tool-4.2.xsd.zip

    Spring框架是Java开发中最常用的轻量级框架之一,它以依赖注入(Dependency Injection,DI)和面向切面编程(Aspect-Oriented Programming,AOP)为核心,极大地简化了企业级应用的开发工作。XSD(XML Schema ...

    spring-beans-3.0.xsd

    在Spring框架中,`spring-beans`是核心组件之一,它负责管理对象的生命周期和依赖关系。`spring-beans`的配置文件通常以`.xsd`为后缀,这些文件定义了XML Schema,用于验证Spring配置文件的语法和结构。本文将深入...

    spring4.0xsd文件

    Spring默认在启动时是要加载XSD文件来验证xml文件的,所以如果有的时候断网了,或者一些开源软件切换域名,那么就很容易碰到应用启动不了。我记得当时Oracle收购Sun公司时,遇到过这个情况。为了防止这种情况,...

Global site tag (gtag.js) - Google Analytics