1.建立專案
spring092601
2.引入spring jar包
commons-logging.jar
junit-4.4.jar
log4j.jar
spring-beans-3.2.0.release.jar
spring-context-3.2.0.release.jar
spring-core-3.2.0.release.jar
spring-expression-3.2.0.release.jar
3.新增配置檔案
<?xml version="1.0" encoding="utf-8"?>
xmlns:xsi=""
xmlns:p=""
xmlns:util=""
xsi:schemalocation="
/spring-beans.xsd
/spring-util.xsd">
4.建立業務bean
在src目錄下建立
包名:cn.jbit.spring092601.domain
/*** spring入門
* @author administrator**/
public class hellospring implements serializable
public hellospring(string name)
public void setname(string name)
public string getname()
}5.在配置檔案中編寫bean的配置,並注入屬性值,也就是我們的di(dependency injection)依賴注入
配置如下:
<?xml version="1.0" encoding="utf-8"?>
xmlns:xsi=""
xmlns:p=""
xmlns:util=""
xsi:schemalocation="
/spring-beans.xsd
/spring-util.xsd">
hello
6.測試bean的屬性注入
在test目錄下測試
包名:cn.jbit.spring092601.domain
public class hellospringtest
/***/
@test
public void testhellpspring4()
/***/
@test
public void testhellpspring5()}
spring配置檔案載入
spring配置檔案的裝載在web.xml中配置 此引數用於後面的spring context loader contextconfiglocation org.springframework.web.context.contextloaderlistener 說明 contextconfigloc...
spring載入配置檔案
在spring中載入配置檔案的方式 configuration propertysource import datasourceconfig.class bean public static propertysourcesplaceholderconfigurer propertysourcespl...
Spring配置檔案載入外部配置檔案
有時,應用程式可能需要從不同的位置 例如 檔案系統 classpath或者url 讀取外部資源 例如 文字檔案 xml檔案 屬性檔案或或者影象檔案 通常,為了從不同位置載入資源,需要和不同的api打交道。spring的資源載入器提供了乙個統一的getresource 方法,使用這個方法可以通過資源路...