23-Java-Spring框架(一)

我只是一個碼農發表於2020-04-28

一、Spring框架了解

    Spring框架是一個開源的框架,為JavaEE應用提供多方面的解決方案,用於簡化企業級應用的開發,相當於是一種容器,可以整合其他框架(結構圖如下)。

        

    上圖反映了框架引包的依賴關係(例如:DAO的jar包依賴AOP的jar包,AOP的jar包依賴Core的jar包)

    上圖也反映了Spring功能有:

        IOC:控制反轉,Spring的核心功能

        AOP:面向切面程式設計

        Web:MVC結構實現、與其他Web技術融合

        DAO:與JDBC整合和事務管理

        ORM:與ORM物件對映實現的框架整合

        JEE:與JavaEE服務整合

二、SpringIOC(Inversion Of Control)

           SpringIOC控制反轉,是指程式中物件的獲取方式發生反轉,由最初的new方式建立,轉為由框架建立注入,這樣可以降低物件之間的耦合度。

    IOC的主要作用是管理程式的元件,建立元件物件和維護物件之間的關係。

    Spring容器:在Spring中,任何的Java類都被當成Bean元件,通過容器管理和使用,Spring容器實現了IOC和AOP機制,

      Spring容器有ApplicationContext和BeanFactory兩種型別。

      ApplicationContext繼承自BeanFactory,提供了更多的方法,建議使用ApplicationContext。

    

        ApplicationContext例項化途徑:

          1.從classpath下載入配置檔案例項化:ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");

          2.從檔案系統中載入配置檔案例項化:ApplicationContext ac = new FileSystemXmlApplicationContext("D:\\applicationContext.xml");

    Bean物件的建立:

          Spring容器建立Bean物件有三種方法:

          1.使用構造器來例項化

          2.使用靜態工廠方法來例項化

          3.使用動態(例項)工廠方法來例項化

        Spring容器建立Bean物件的步驟:

          第一步:匯入SpringIOC相關包到WebRoot/WBE-INF/lib下(想要相關包的網友請留言私聊)

              commons-logging-1.2.jar

              spring-beans-4.1.6.RELEASE.jar

              spring-context-4.1.6.RELEASE.jar

              spring-context-support-4.1.6.RELEASE.jar

              spring-core-4.1.6.RELEASE.jar

              spring-expression-4.1.6.RELEASE.jar

          第二步:編寫實體類和實體工廠類

實體類:

 1 package com.springioc.entity;
 2 
 3 public class User {
 4     private Integer id;
 5     private String username;
 6     private String password;
 7     public User() {
 8         super();
 9         // TODO Auto-generated constructor stub
10     }
11     public User(Integer id, String username, String password) {
12         super();
13         this.id = id;
14         this.username = username;
15         this.password = password;
16     }
17     public Integer getId() {
18         return id;
19     }
20     public void setId(Integer id) {
21         this.id = id;
22     }
23     public String getUsername() {
24         return username;
25     }
26     public void setUsername(String username) {
27         this.username = username;
28     }
29     public String getPassword() {
30         return password;
31     }
32     public void setPassword(String password) {
33         this.password = password;
34     }
35     @Override
36     public int hashCode() {
37         final int prime = 31;
38         int result = 1;
39         result = prime * result + ((id == null) ? 0 : id.hashCode());
40         result = prime * result
41                 + ((password == null) ? 0 : password.hashCode());
42         result = prime * result
43                 + ((username == null) ? 0 : username.hashCode());
44         return result;
45     }
46     @Override
47     public boolean equals(Object obj) {
48         if (this == obj)
49             return true;
50         if (obj == null)
51             return false;
52         if (getClass() != obj.getClass())
53             return false;
54         User other = (User) obj;
55         if (id == null) {
56             if (other.id != null)
57                 return false;
58         } else if (!id.equals(other.id))
59             return false;
60         if (password == null) {
61             if (other.password != null)
62                 return false;
63         } else if (!password.equals(other.password))
64             return false;
65         if (username == null) {
66             if (other.username != null)
67                 return false;
68         } else if (!username.equals(other.username))
69             return false;
70         return true;
71     }
72     @Override
73     public String toString() {
74         return "User [id=" + id + ", username=" + username + ", password="
75                 + password + "]";
76     }
77     
78 }

實體工廠類:

 1 package com.springioc.entity;
 2 
 3 public class UserFactory {
 4     public static User CreateUser(){
 5         return new User();
 6     }
 7     
 8     public User DynamicCreateUser(){
 9         return new User();
10     }
11 }

          第三步:編寫例項化配置檔案applicationContext.xml

  1 <?xml version="1.0" encoding="UTF-8"?>
  2 <beans xmlns="http://www.springframework.org/schema/beans"
  3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4        xmlns:context="http://www.springframework.org/schema/context"
  5        xmlns:aop="http://www.springframework.org/schema/aop"
  6        xmlns:tx="http://www.springframework.org/schema/tx"
  7        xmlns:jdbc="http://www.springframework.org/schema/jdbc"
  8        xmlns:jee="http://www.springframework.org/schema/jee"
  9        xmlns:mvc="http://www.springframework.org/schema/mvc"
 10        xmlns:util="http://www.springframework.org/schema/util"
 11        xsi:schemaLocation="
 12             http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
 13             http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
 14             http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
 15             http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
 16             http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
 17             http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
 18             http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
 19             http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
 20             
 21 <!-- ************************************************************************************************************************ -->
 22         <!-- 在容器配置檔案applicationContext中新增bean的定義,等價於將Bean元件放入Spring容器,後續由Spring負責建立物件 -->
 23         <!-- 在容器中最基本的單位就是bean標籤,一個bean標籤代表一個物件 -->
 24         <!-- 預設情況下,每一個bean都是單例的,在單例(singleton)情況下,隨容器的建立而建立,隨著容器的銷燬而銷燬 -->
 25         <!-- Bean建立物件的三種方式 -->
 26         <!-- 1.構造器 
 27             語法格式:    
 28                      <bean id="物件識別符號" class="物件許可權定名"></bean> 
 29             舉例:
 30                     <bean id="user" class="com.springioc.entity.User"></bean>    
 31         -->
 32         <!-- 2.靜態工廠 
 33             語法格式:    
 34                      <bean id="靜態工廠識別符號" class="工廠許可權定名" factory-method="靜態方法名"></bean>
 35             舉例:
 36                     <bean id="staticFactory" class="com.springioc.entity.UserFactory" factory-method="CreateUser"></bean>
 37         -->
 38         <!-- 3.動態(例項)工廠 
 39             語法格式:
 40                     <bean id="工廠識別符號" class="工廠許可權定名"></bean>
 41                      <bean id="動態工廠識別符號" factory-bean="工廠識別符號" factory-method="動態方法名"></bean>
 42             舉例:
 43                     <bean id="userFactory" class="com.springioc.entity.UserFactory"></bean>
 44                     <bean id="dynamicCreateUser" factory-bean="userFactory" factory-method="DynamicCreateUser"></bean>
 45         -->
 46         <bean id="userFactory" class="com.springioc.entity.UserFactory"></bean>
 47         <bean id="dynamicCreateUser" factory-bean="userFactory" factory-method="DynamicCreateUser"></bean>
 48 <!-- ************************************************************************************************************* -->
 49         <!-- Bean便籤常用屬性:
 50                 id:bean物件識別符號
 51                 factory-bean:bean物件建立工廠識別符號
 52                 class:許可權定名
 53                 factory-method:物件建立工廠函式
 54                 init-method:bean物件初始化方法名
 55                 destory-method:bean物件銷燬方法名
 56                 lazy-init:延遲bean物件例項化,當設定為true的時候,不管是不是單例(singleton),當呼叫getBean()的時候才會建立物件
 57             
 58              Beans標籤常用屬性:(作用於beans標籤中的所有bean標籤)
 59                 default-init-method:預設bean物件初始化方法名
 60                 default-destory-method:預設bean物件銷燬方法名
 61                 default-lazy-init:預設延遲bean物件例項化
 62          -->
 63 <!-- ************************************************************************************************************** -->
 64         <!-- Bean物件的引數注入
 65                 注入型別可以為字串、集合、Bean物件
 66                 1.setter注入
 67                     name:實體類屬性名
 68                     value:注入引數的值
 69                     ref:注入bean物件的值
 70                     舉例:
 71                         <bean id = "user" class = "com.springioc.entity.User">
 72                             <property name="id" value="1"></property>
 73                             <property name="username" value="admin"></property>
 74                             <property name="password" value="123"></property>    
 75                         </bean>
 76                     相當於之前 User user = new User();
 77                               user.setId(1);
 78                               user.setUsername("admin");
 79                               user.setPassword("123");
 80                     
 81                 2.構造器注入 
 82                     index:實體類建構函式的形參順序,0表示第一個引數,1表示第二引數,2表示第三個引數...
 83                     value:注入引數的值
 84                     ref:注入bean物件的值
 85                     舉例:
 86                         <bean id = "user" class = "com.springioc.entity.User">
 87                             <constructor-arg index="0" value="2"></constructor-arg>
 88                             <constructor-arg index="1" value="username"></constructor-arg>
 89                             <constructor-arg index="2" value="password"></constructor-arg>
 90                         </bean>
 91                 注意:(以上兩種注入方式都是以字串的注入型別來舉例的,下面是Bean物件注入和集合注入)
 92                     Bean物件的注入:如果一個實體類中的屬性是另一個實體類時,注入時需將property標籤的value屬性改為ref屬性
 93                     集合注入:(集合有set,list,map,props)
 94                         概述:假設一個實體類的屬性中有集合,那麼引數注入集合應該採用集合注入
 95                         舉例:
 96                             <bean id = "girl" class = "com.springioc.entity.Girl">
 97                                 <property name="glist">
 98                                     <list>
 99                                         <value>范冰冰</value>
100                                         <value>楊冪</value>
101                                         <value>王祖賢</value>
102                                     </list>
103                                 </property>
104                                 <property name="gset">
105                                     <set>
106                                         <ref bean = "user1"/>
107                                         <ref bean = "user2"/>
108                                     </set>
109                                 </property>
110                                 <property name="gmap">
111                                     <map>
112                                         <entry key="美女" value="楊冪"></entry>
113                                         <entry key="美人">
114                                             <value>范冰冰</value>
115                                         </entry>
116                                     </map>
117                                 </property>
118                                 <property name="gprops">
119                                     <props>
120                                         <prop key="美女">楊冪</prop>
121                                         <prop key="美人">范冰冰</prop>
122                                     </props>
123                                 </property>
124                             </bean>
125         -->
126 <!-- *************************************************************************************************************** -->
127     <!-- 一個Bean物件引數注入的例項:載入JDBC驅動-->
128         <!-- 載入資原始檔 -->
129             <!-- 第一步:先建一個檔案,檔名為jdbc.properties,放在src/下,檔案中寫 admin=root
130                                                                             password=root
131                                                                             url=jdbc:mysql://localhost:3306/test
132                                                                             JDBCdriver=com.mysql.jdbc.Driver
133                   第二步:在applicationContext.xml中寫
134                       <util:properties id="jdbc" location="classpath:jdbc.properties"></util:properties>
135         -->
136         <!-- 配置資料來源 -->
137             <!-- Spring引入一種表示式語言,它和EL的語法相似,可以讀取一個Bean物件/集合中的資料 -->
138             <!-- 第一步:編寫一個和jdbc.properties檔案相對應的實體類JDBCTest,屬性名需要相等 
139                   第二步:在applicationContext.xml中寫
140                       <bean id="jdbc" class="com.springioc.test.JDBCTest">
141                           <property name="admin" value="#{db.admin}"></property>
142                         <property name="root" value="#{db.password}"></property>
143                         <property name="url" value="#{db.url}"></property>
144                         <property name="JDBCdriver" value="#{db.JDBCdriver}"></property>
145                       </bean>
146             -->
147 <!-- ************************************************************************************************************** -->
148 </beans>

          第四步:編寫例項化測試類

 1 package com.springioc.test;
 2 
 3 import org.springframework.context.ApplicationContext;//spring-context.jar包中的
 4 import org.springframework.context.support.ClassPathXmlApplicationContext;//spring-context-support.jar包中的
 5 
 6 import com.springioc.entity.User;
 7 
 8 public class ApplicationContextBuildUserTest {
 9     public static void main(String[] args) {
10         //以前的方式建立物件
11 //        User user = new User();
12 //        System.out.println(user);
13         
14         //現在使用Spring框架的容器來建立物件
15             //第一步:建立Spring容器
16         ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
17         
18             /*第二步:從ApplicationContext容器獲取Bean物件
19              * 1.構造器獲取物件
20              *         語法格式:
21              *             型別名 變數名 = 容器物件.getBean("物件識別符號",元件型別);
22              *         舉例:
23              *             User user = ac.getBean("user", User.class);
24              * 2.靜態工廠獲取物件
25              *         語法格式:
26              *             型別名 變數名 = 容器物件.getBean("靜態工廠識別符號",元件型別);
27              *         舉例:
28              *             User user = ac.getBean("staticFactory", User.class);
29              * */
30         User user = ac.getBean("dynamicCreateUser", User.class);
31         System.out.println(user);
32     }
33 }

          第五步:執行結果

            

    Bean物件的作用域:

        指定Spring容器建立Bean物件的作用域:

            

        注意:singleton單例模式,通過getBean獲取的物件HashCode是相同的,即user1 = user2返回true

           prototype多例模式,通過getBean獲取的物件HashCode是不同的,即user1 = user2返回false

    Bean物件的引數注入:(看上面的applicationContext.xml中註釋寫的知識點)

        容器可以建立Bean物件之間的關係,實現技術途徑就是DI注入,Spring DI注入setter注入和構造器注入兩種

    元件掃描:Spring提供了一套基於註解配置的的使用方法,使用該方法可以大大簡化XML的配置資訊

         開啟元件掃描,可以利用註解方式應用IOC,使用方法如下:

            第一步:除了需要引入springIOC相關jar包之外還需要引入SpringAOP相關jar包(需要相關jar包的網友請留言私聊)

                aopalliance-1.0.jar

                aspectjweaver-1.5.3.jar

                spring-aop-4.1.6.RELEASE.jar

                spring-aspects-4.1.6.RELEASE.jar

            第二步:在applicationContext.xml中新增啟用標記(用了元件掃描就可以不用bean標籤了)

              <context:component-scan base-package="包路徑(用最大的,例如:com.springioc)"/>

            第三步:在元件類中追加以下標記

              

              注意:1.掃描元件後,預設id值為元件類名首字母小寫,也可以自定義id。例如:@Component("stu")

                 2.掃描元件後,預設scope為singleton單例,也可以進行指定。例如:@Scope("prototyppe")

                 3.也可以指定初始化和銷燬的方法,例如,在元件類的方法前追加@PostConstruct來指定初始化方法,追加@PreDestory來指定銷燬方法

                 4.將所有bean元件掃描到Spring容器後,可以使用以下註解指定注入關係

                        @Autowired/@Qulifier:可以處理構造器注入和setter注入

                        @Resource:只能處理Setter注入,但大部分情況都是setter注入

                 5.@Value註解可以注入Spring表示式值

                      首先讀取db.properties檔案,封裝成Properties物件,在applicationContext.xml中新增

                          <util:properties id="jdbc" location="classpath:jdbc.properties"></util:properties>

                      然後在元件類屬性變數或Setter方法前使用@Value註解

                          @Value("#{db.url}")

                          private String url;

              追加標記舉例:

1 @Component//預設實體類id名稱是實體類名稱(首字母小寫)
2 @Scope("prototype")//預設為單例模式,此處修改為多例模式
3 public class User { 4 }

             第四步:測試獲取bean物件:

 1 package com.springioc.test;
 2 
 3 import org.springframework.context.ApplicationContext;//spring-context.jar包中的
 4 import org.springframework.context.support.ClassPathXmlApplicationContext;//spring-context-support.jar包中的
 5 
 6 import com.springioc.entity.User;
 7 
 8 public class ApplicationContextBuildUserTest {
 9     public static void main(String[] args) {
10         ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
11         User user = ac.getBean("user", User.class);//此處的id:user是從@Component預設實體類id中得出來的
12         System.out.println(user);
13     }
14 }

                執行結果:

        

    SpringIOC實現解耦(重點理解)

       解耦主題:通過hibernate和JDBC兩種技術實現一個使用者的刪除操作

       1.XML配置檔案版的解耦

          第一步:編寫使用者實體類和使用者DAO介面

1 //使用者DAO實現介面
2 package com.springiocDecoupling.usedao;
3 
4 public interface UserDAO {
5     public void delete();
6 }

          第二步:編寫Hibernate技術和JDBC技術分別實現刪除操作的類

1 //JDBC實現DAO刪除操作
2 package com.springiocDecoupling.usedao;
3 
4 public class JDBCDAO implements UserDAO{
5     public void delete(){
6         System.out.println("通過JDBC實現User刪除");
7     }
8 }
1 //Hibernate實現DAO刪除操作
2 package com.springiocDecoupling.usedao;
3 
4 public class HibernateDAO implements UserDAO{
5     public void delete(){
6         System.out.println("通過Hibernate實現User刪除");
7     }
8 }

          第三步:編寫一個控制使用者刪除操作的控制類

//控制類,控制刪除操作
package com.springiocDecoupling.entity.Controller;
import org.springframework.stereotype.Controller;
import com.springioc_Decoupling.usedao.UserDAO;

@Controller//用於Spring框架管理
public class UserController {

    private UserDAO dao;
    public UserDAO getDao() {
        return dao;
    }
    public void setDao(UserDAO dao) {
        this.dao = dao;
    }
    public void delete(){
        dao.delete();
    }
}

          第四步:配置applicationContext.xml資訊

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans"
 3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4        xmlns:context="http://www.springframework.org/schema/context"
 5        xmlns:aop="http://www.springframework.org/schema/aop"
 6        xmlns:tx="http://www.springframework.org/schema/tx"
 7        xmlns:jdbc="http://www.springframework.org/schema/jdbc"
 8        xmlns:jee="http://www.springframework.org/schema/jee"
 9        xmlns:mvc="http://www.springframework.org/schema/mvc"
10        xmlns:util="http://www.springframework.org/schema/util"
11        xsi:schemaLocation="
12             http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
13             http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
14             http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
15             http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
16             http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
17             http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
18             http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
19             http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
20         <bean id = "jdao" class = "com.springioc_Decoupling.usedao.JDBCDAO"></bean>
21         <bean id = "hdao" class = "com.springioc_Decoupling.usedao.HibernateDAO"></bean>
22         
23         <bean id = "ucontroller" class="com.springiocDecoupling.entity.Controller.UserController">
24             <property name="dao" ref="jdao"></property><!--解耦操作就體現在此處,要用jdbc,ref屬性修改為jdao就行了,要用hibernate,ref屬性修改為hdao就行了-->
25         </bean>
26 </beans>

          第五步:編寫測試類

 1 package com.springiocDecoupling.entity.test;
 2 
 3 import org.springframework.context.ApplicationContext;//spring-context.jar包中的
 4 import org.springframework.context.support.ClassPathXmlApplicationContext;//spring-context-support.jar包中的
 5 
 6 import com.springiocDecoupling.entity.Controller.UserController;
 7 
 8 public class ApplicationContextBuildUserTest {
 9     public static void main(String[] args) {
10         ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
11         UserController ucon = ac.getBean("ucontroller", UserController.class);
12         ucon.delete();
13     }
14 }

            測試結果:

          

      2.通過註解的方式進行解耦

          第一步:編寫使用者實體類和使用者DAO介面

          第二步:第二步:編寫Hibernate技術和JDBC技術分別實現刪除操作的類

 1 package com.springioc_Decoupling.usedao;
 2 
 3 import org.springframework.stereotype.Repository;
 4 
 5 @Repository("jdao")
 6 public class JDBCDAO implements UserDAO{
 7     public void delete(){
 8         System.out.println("通過JDBC實現User刪除");
 9     }
10 }
 1 package com.springioc_Decoupling.usedao;
 2 
 3 import org.springframework.stereotype.Repository;
 4 
 5 @Repository("hdao")
 6 public class HibernateDAO implements UserDAO{
 7     public void delete(){
 8         System.out.println("通過Hibernate實現User刪除");
 9     }
10 }       

          第三步:編寫一個控制使用者刪除操作的控制類

 1 package com.springiocDecoupling.entity.Controller;
 2 import javax.annotation.Resource;
 3 
 4 import org.springframework.stereotype.Controller;
 5 
 6 import com.springioc_Decoupling.usedao.UserDAO;
 7 
 8 @Controller("ucontroller")
 9 public class UserController {
10     //如果使用Autowired的話需要Qualifier搭配,例如:
11   //@Autowired
11   //@Qualifier("jdao") 11 @Resource(name="jdao")//解耦操作就體現在此處,要用jdbc修改為jdao就行了,要用hibernate修改為hdao就行了 12 private UserDAO dao; 13 public UserDAO getDao() { 14 return dao; 15 } 16 public void setDao(UserDAO dao) { 17 this.dao = dao; 18 } 19 public void delete(){ 20 dao.delete(); 21 } 22 }

          第四步:配置applicationContext.xml資訊,啟動元件掃描

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans"
 3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4        xmlns:context="http://www.springframework.org/schema/context"
 5        xmlns:aop="http://www.springframework.org/schema/aop"
 6        xmlns:tx="http://www.springframework.org/schema/tx"
 7        xmlns:jdbc="http://www.springframework.org/schema/jdbc"
 8        xmlns:jee="http://www.springframework.org/schema/jee"
 9        xmlns:mvc="http://www.springframework.org/schema/mvc"
10        xmlns:util="http://www.springframework.org/schema/util"
11        xsi:schemaLocation="
12             http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
13             http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
14             http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
15             http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
16             http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
17             http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
18             http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
19             http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
20         
21         <!--
22         <bean id = "jdao" class = "com.springioc_Decoupling.usedao.JDBCDAO"></bean>
23         <bean id = "hdao" class = "com.springioc_Decoupling.usedao.HibernateDAO"></bean>
24         
25         <bean id = "ucontroller" class="com.springiocDecoupling.entity.Controller.UserController">
26             <property name="dao" ref="hdao"></property>
27         </bean> 
28          -->
29          
30         <context:component-scan base-package="com.springiocDecoupling"></context:component-scan>
31 </beans>

          第五步:編寫測試類

              測試結果:

          

 

相關文章