Spring入門(一)——IOC

  • 2020 年 3 月 11 日
  • 筆記

1. IOC定義

Inversion of Control,減低電腦程式碼間的耦合度,對象的創建交給外部容器完成,不用再new了

2. 流程

2.1 創建Bean對象

package bean;    public class User {        private String name;      private String email;      private String password;        /**      * 省略了getters/setters      * @author Howl      */        //構造函數      public User(String name, String email, String password) {          super();          this.name = name;          this.email = email;          this.password = password;      }  }

2.2 配置applicationContext.xml

<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"      xmlns:context="http://www.springframework.org/schema/context"      xsi:schemaLocation="          http://www.springframework.org/schema/beans          http://www.springframework.org/schema/beans/spring-beans.xsd          http://www.springframework.org/schema/context          http://www.springframework.org/schema/context/spring-context.xsd">      <!-- 上面是約束的固定寫法 -->          <!-- 配置Bean對象給Spring容器 -->      <!-- id 唯一表示 -->      <!-- class 對應的Bean對象 -->      <!-- scope 作用域,單例和多例 -->      <bean id="User" class="bean.User" scope="singleton"></bean>    </beans> 

2.3 通過容器獲取Bean對象

//通過配置文件獲取上下文  applicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");  //通過上下文獲取Bean對象,不用通過new方式了  User user = ac.getBean("User");

3. 其他細節

3.1 帶參構造函數創建對象

<bean id="User" class="bean.User" scope="singleton">        <!--constructor指定構造函數的參數類型、名稱、第幾個-->      <constructor-arg index="0" name="name" type="String" value="Howl"></constructor-arg>      <!--參數為對象時,value改為ref="" -->  </bean>

3.2 裝載集合

<bean id="userService" class="bb.UserService" >      <constructor-arg >          <list>              //普通類型              <value></value>              //引用類型              <ref></ref>          </list>      </constructor-arg>  </bean>

3.3 註解

1.先引入context名稱空間  xmlns:context="http://www.springframework.org/schema/context"    2.開啟註解掃描器  <context:component-scan base-package=""></context:component-scan>    3.在Bean對象中添加@Component(name ="User"),就不用在配置文件中寫<Bean>標籤了