Spring4学习笔记(3)
程序员文章站
2022-06-04 23:36:55
...
定义配置文件
要想使用Spring,首先我们需要在搭建的环境中定义需要的配置文件
1、创建配置文件
我们在上文中的配置环境里的src中先new一个xml文件,命名为applicationContext.xml
既然有xml文件那么就说明需要有约束,约束在哪里呢:
找到Spring-framework-4.2.1.RELEASE文件夹
依照下列顺序打开:
doc文件夹->spring-framework-ference文件夹->html文件夹
找到xsd-configuration.html
用浏览器打开这个文件,找到:
将下的代码copy粘贴到之前创建好的applicationContext.xml文件中
如下所示:
将
http://www.springframework.org/schema/beans/spring-beans.xsd
copy一下,选中window->Preferences,输入xml,然后选中XML Catalog,选中User Specified Entries->Add
在Add XML Catalog Element窗口的Key type选择URI
将复制的粘贴进Key中
点击 File System...选择
Spring-framework-4.2.1.RELEASE文件夹->schema->beans->选中spring-beans->4.2.xsd
点击OK完成
接下来我们开始定义bean
完成配置文件的定义
下一篇: Unity AIUI