大家可以關註作者的賬號,關註從零開始學Spring筆記文集。也可以根據目錄前往作者的博客園博客進行學習。本片文件將基於黑馬程式員就業班視頻進行學習以及資料的分享,並記錄筆記和自己的看法。歡迎大家一起學習和討論。 "【從零開始學Spring筆記】Spring學習路線" XML提示的配置 第一步:Win ...
大家可以關註作者的賬號,關註從零開始學Spring筆記文集。也可以根據目錄前往作者的博客園博客進行學習。本片文件將基於黑馬程式員就業班視頻進行學習以及資料的分享,並記錄筆記和自己的看法。歡迎大家一起學習和討論。
【從零開始學Spring筆記】Spring學習路線
XML提示的配置
第一步:Window->Preference->xml catlog->User Specified Entries->add的順序進入第二步界面
第二步:按照圖示步驟修改
操作1:
找到之前配置文件中的約束最後一行網址,賦值
http://www.springframework.org/schema/beans/spring-beans.xsd
操作2:安裝路徑
spring-framework-4.2.4.RELEASE\schema\beans
先解壓jar包,找到這個,最後選擇4.2版本
操作3:選擇schema location
第三步:點擊OK,返回。點擊Apply and Close
配置成功後,在編寫xml文件時,就有相應的提示了。
Bean的相關的配置
標簽的id和name的配置
id :使用了約束中的唯一約束。裡面不能出現特殊字元的。
name :沒有使用約束中的唯一約束(理論上可以出現重覆的,但是實際開發不能出現的)。裡面可以出現特殊字元。
Spring和Struts1框架整合的時候,Struts1名稱前必須使用 “/”,所以使用Spring整合時使用name,例如
Bean的生命周期的配置(瞭解)
init-method :Bean被初始化的時候執行的方法
destroy-method :Bean被銷毀的時候執行的方法(Bean是單例創建,工廠關閉)
在配置文件中輸入init-method="setup" destroy-method="destroy"
即可,在class指定的類中建立setup()和destory()方法,setup()在該類被實例化時調用,destory()在該類被銷毀的時候調用。方法名可以自定義
Bean的作用範圍的配置(重點)
scope | Bean的作用範圍 |
---|---|
singleton | 預設的,Spring會採用單例模式創建這個對象。 |
prototype | 多例模式。(Struts2和Spring整合一定會用到,Struts2是多例) |
request | 應用在web項目中,Spring創建這個類以後,將這個類存入到request範圍中。 |
session | 應用在web項目中,Spring創建這個類以後,將這個類存入到session範圍中。 |
globalsession | 應用在web項目中,必須在porlet環境(登錄百度,再登錄百度的子網站,例如百度地圖,就不需要登陸了)下使用。但是如果沒有這種環境,相對於session。 |
在配置文件中輸入scope ="singleton"
即可,實現作用範圍的配置,預設時單例。單例即只被實例一次,無論調用多少次,命名不同也是同一個實例。多例即調用一次實例一次,每個實例均不同。
Spring的Bean的實例化方式(瞭解)
Bean已經都交給Spring管理,Spring創建這些類的時候,有幾種方式:
1. 無參構造方法的方式(預設)
編寫類
package com.tyust.spring.demo04;
public class Bean1 {
public Bean1() {
super();
System.out.println("Bean1的無參構造方法執行了...");
}
}
編寫配置文件
<!-- 無參構造 -->
<bean id="1" class="com.tyust.spring.demo04.Bean1"></bean>
編寫測試方法
private static void mothed1() {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationcontext.xml");
Bean1 b = (Bean1) applicationContext.getBean("1");
}
輸出結果
2.靜態工廠實例化的方式
創建類並且編寫Bean2的靜態工廠
package com.tyust.spring.demo04;
public class Bean2 {
}
-------------------------------------------------------------------------------------------
package com.tyust.spring.demo04;
public class Bean2Factory {
public static Bean2 createBean2() {
System.out.println("Bean2Factory中的方法執行了...");
return new Bean2();
}
}
編寫配置文件
<!--靜態工廠實例化-->
<bean id="2" class="com.tyust.spring.demo04.Bean2Factory" factory-method="createBean2"></bean>
編寫測試方法
private static void mothed2() {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationcontext.xml");
Bean2 b2 = (Bean2) applicationContext.getBean("2");
System.out.println(b2);
}
輸出結果
3.實例工廠實例化的方式
創建類並且編寫Bean2的實例化工廠
package com.tyust.spring.demo04;
public class Bean3 {
}
-------------------------------------------------------------------------------------------
package com.tyust.spring.demo04;
public class Bean3Factory {
public Bean3 createBean3() {
System.out.println("Bean3Factory中的方法執行了...");
return new Bean3();
}
}
編寫配置文件
<!--實例工廠實例化 -->
<bean id="3" class="com.tyust.spring.demo04.Bean3Factory" ></bean>
<bean id="4" factory-bean="3" factory-method="createBean3"></bean>
編寫測試方法
public static void mothed3(){
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
Bean3 b3 = (Bean3) applicationContext.getBean("4");
System.out.println(b3);
}
輸出結果
總結:因為ApplicationContext在調用時就會實例化,所靜態方法可以直接通過工廠方法調用,因為靜態方法是不屬於對象的。而普通實例化方法,必須有對象才能調用,所有在配置文件時,必須先創建一個對象才能實例化。
Spring的屬性註入
1.構造方法的方式的屬性註入
2.Set方法的方式的屬性註入
示例
<!-- 構造方法的屬性註入 -->
<bean id="car" class="com.tyust.spring.demo03.Car">
<constructor-arg name="name" value="寶馬"></constructor-arg>
<constructor-arg name="price" value="80w"></constructor-arg>
</bean>
<!-- Set方法的屬性註入 -->
<bean id="car2" class="com.tyust.spring.demo03.Car2">
<property name="name" value="賓士"></property>
<property name="price" value="100w"></property>
</bean>
<!-- Set方法設置對象類型的屬性 -->
<bean id="employee" class="com.tyust.spring.demo03.Employee">
<property name="name" value="賓士"></property>
<property name="car2" ref="car2"></property>
</bean>
輸出結果
總結
構造方法用constructor-arg,set方法用property。普通類型用value,其他類型用ref。
3.p名稱空間的屬性註入(Spring2.5以後)
通過引入p名稱空間完成屬性的註入:
寫法:
普通屬性 p:屬性名=”值”
對象屬性 p:屬性名-ref=”值”
引入p名稱空間,如圖所示加入下麵這行代碼
xmlns:p="http://www.springframework.org/schema/p"
示例,將上例修改
<!-- Set方法的屬性註入 -->
<bean id="car2" class="com.tyust.spring.demo03.Car2" p:name = "路虎" p:price = "50w">
<!-- <property name="name" value="賓士"></property>
<property name="price" value="100w"></property> -->
</bean>
<!-- Set方法設置對象類型的屬性 -->
<bean id="employee" class="com.tyust.spring.demo03.Employee" p:name = "王總" p:car2-ref = "car2">
<!-- <property name="name" value="賓士"></property>
<property name="car2" ref="car2"></property>
-->
</bean>
輸出結果
4.SpEL的屬性註入(Spring3.0以後)
SpEL:Spring Expression Language,Spring的表達式語言。
語法:#{SpEL}
示例,將上例修改
<bean id="car2" class="com.tyust.spring.demo03.Car2">
<property name="name" value="#{'凱迪拉克'}"></property>
<property name="price" value="#{'25w'}"></property>
</bean>
<bean id="employee" class="com.tyust.spring.demo03.Employee">
<property name="name" value="#{'李總'}"></property>
<property name="car2" value="#{car2}"></property>
</bean>
輸出結果
總結SpEL可以輸出更多內容,包括一些類,以及方法的調用和一些計算。
集合屬性的註入
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="collectionBean" class="com.tyust.spring.demo05.CollectionBean">
<property name="arrs">
<array>
<value>劉備</value>
<value>張飛</value>
<value>關羽</value>
</array>
</property>
<property name="list">
<list>
<value>曹操</value>
<value>曹丕</value>
<value>曹植</value>
</list>
</property>
<property name="set">
<set>
<value>孫堅</value>
<value>孫策</value>
<value>孫權</value>
</set>
</property>
<property name="map">
<map>
<entry key="諸葛亮" value="黃月英"></entry>
<entry key="周瑜" value="小喬"></entry>
<entry key="呂布" value="貂蟬"></entry>
</map>
</property>
</bean>
</beans>
輸出結果
?ArrayList類的註入問題
分模塊配置
1.在載入配置文件的時候,載入多個
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationcontext.xml","applicationcontext2.xml");
2.在一個配置文件中引入多個配置文件
<import resource= "applicationcontext2.xml"/>