当前位置: 代码迷 >> Java Web开发 >> spring 配置文件 版本宣言
  详细解决方案

spring 配置文件 版本宣言

热度:1717   发布时间:2013-02-25 21:14:29.0
spring 配置文件 版本声明
问题是这样的,我现在使用的是Myeclipse8.5版本,它只支持到Spring3.0,我之前下载的3.1.1的Spring jar包,然后我想使用自己下载的jar包,导入后,我的Spring配置文件的<beans ......> 应该怎么写呢?下面这是Myeclipse自动生成的3.0版本的配置文件
XML code
<beans    xmlns="http://www.springframework.org/schema/beans"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xmlns:p="http://www.springframework.org/schema/p"    xsi:schemaLocation="http://www.springframework.org/schema/beans     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"></beans>

我想知道的是3.1.1如何写,我是来求渔而不是求鱼的,搜索Spring3.1.1的配置文件声明部分拷过来我也会,我更希望有人告诉我,这段版本声明是怎么写出来的,求教。

------解决方案--------------------------------------------------------
配置文件这些就是引入命名空间,下面的格式会用到。也就这样,没太多高深的意义。
通常写配置文件时,就可以从官方给的例子中复制出来这几行;都不用记住,以后写的时候直接复制过来。
如果楼主非要求渔,那就把命名空间,属性复制出来,google一下。
  相关解决方案