是否有一个共同的地方包含所有Spring XML的声明

时间:2012-03-12 10:33:10

标签: java xml spring xsd

我需要为Spring Framework 3应用程序编写applicationContext.xml,但我无法找到它的XML声明。有人可以告诉我这个地方吗?

同样,是否有一个共同的地方定义所有Spring XML的声明? (或者其他XML就在附近。)

以下是我通过Google搜索发现的Spring 2.5的声明示例:

<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: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/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
</beans>

1 个答案:

答案 0 :(得分:2)

这些都在Spring文档中有所描述,有关基本结构的信息,请参阅3.2.1 Configuration metadata,有关您可以使用的其他声明的详细信息,请参阅Appendix C. XML Schema-based configuration