1. 程式人生 > >Spring開發環境搭建

Spring開發環境搭建

1. 把Spring4.0開發需要的jar檔案放到lib目錄中。

2.

 

 3. Spring的配置檔案beans.xml(要放在專案根目錄(src)下)

<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN"

"http://www.springframework.org/dtd/spring-beans-2.0.dtd">

注意:配置檔案的取名可以是任意的,檔案可以存放在任何目錄下,但考慮到通用性,一般放在類路徑下(也就是Eclipse中專案的src目錄下即可) 

4.  測試例項化Spring容器並獲取Person的物件

package cn.edu.hezeu.jsj.service.ch07;

import org.springframework.beans.factory.BeanFactory;

import org.springframework.beans.factory.xml.XmlBeanFactory;//表示已過時

import org.springframework.context.ApplicationContext;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import

org.springframework.core.io.ClassPathResource;