Spring IOC簡單理解及創建對象的方式

spring框架

控制反轉(Inversion on Control)在spring框架裡面,一般交給Spring容器,這叫控制反轉

什麼是控制反轉呢?

先來說一下控制正轉,

class Demo{
    Student student = new Student();
}

簡單地來說就是自己去創建對象,需要什麼對象,就創建什麼對象,實在當前文件中創建出來的,自己new出來的,這就叫做“控制正轉”

那麼控制反轉是什麼:

就是跟控制正轉反著來,就是我需要的對象,我不需要自己new創建出來,我隻需要到一個地方去取過來用,相當於讓別人創建出來我們需要的對象。另外,讓其它人來創建對象有兩種方式:第一種是直接調用有參構造方法,另一種方法是調用構造方法,然後使用set方法實現。

第一種方式是在spring的配置文件中(applicationContext.xml)中寫

applicationContext.xml

<!-- 其中scope是范圍的意思
	singleton是單例模式,無論是否存在創建student這個操作,都會創建一個student對象,隻創建一個 
	prototype是多例模式,隻要當你進行創建操作的時候才會進行創建
	舉個例子,單例模式就像一臺電腦,無論你用不用,它都在那裡,也不會分裂多出一個,也不會少一個
			而多例模式就像擠牙膏,就是那種,你擠多少,出來多少,如果不擠就沒有
-->
<bean scope="singleton" name="student" class="com.example.spring.entity.Student">
	<constructor-arg name="id" value="1"/>
    <constructor-arg name="name" value="張三"/>
    <!-- 當你創建的對像包括一個引用類型的時候,使用ref:reference:參考,引用來進行構造,調用的就是下面的course對象 -->
    <constructor-arg name="course" ref="com.example.spring.entity.Course"/>
</bean>

Demo.class

public class Demo{
    public static void main(String[] args){
        ApplicationContext context = new ClassPathXmlApplicationCOntext("applicationContext.xml");
        Student student  = (Student) context.getBean("student"); // 根據你在applicationContext.xml的名字找到要創建的
    }
}

第二種方式是使用spring的配置文件中調用無參構造方法,然後通過使用set方法將元素放進去

applicationContext.xml

<bean scope="singleton" name="course" class="com.example.spring.entity.Course">
	<property name="id" value="1"/>
    <property name="name" value="java"/>
</bean>

該種方法是構建一個無參構造方法,然後將<property>裡面對應的元素拿出來,使用set方法放進去,至於對應的class文件也等用於是上面的Demo.class

對於第二種方法的優化:

具體表現在三層架構方面

StudentController.class

// 前面這個註釋等同於@Controller,在其他層次對應的就是@service @Repository註釋是放在實現類上面的 
// 相當於 ApplicationContext.xml 文件中的
//		<bean name="studentController" class="com.example.spring.controller">
// 		    <property name="studentService" ref="studnetService"/>
//      </bean>
@Controller(name="studentController") 
public class StudentController{
    // @Resource(name="studnetService") 就相當於調用setStudentService()方法將下面對應的元素放進Controller對象裡
    // <property name="studentService" ref="studnetService"/>
    // 然後 ref 在調用
    // <bean name="studentService" class="com.example.spring.service.impl.StudentServiceImpl"><bean>
    @Resource(name="studentService")
    private StudentService studentService;
    
    public void selectAll(){
        studentService.selectAll();
    }
    public void setStudnetService(StudentService studnetService){
        this.studnetService = studentService;
    }
    
}

在次優化變成

StudentController.class

@Controller
public class StudnetController{
    @Autowired // 這個會自動進行依賴註入,也不用特意寫一個set方法瞭很方便,但是要註意配置文件,要進行配置,掃描註釋
     private StudentService studentService;
    
    public void selectAll(){
        studentService.selectAll();
    }
   
}

applicationContext.xml

<!-- 掃描base-package對應的包下面類中所有的註解-->
    <context:component-scan base-package="com.example.spring"/>

問題來瞭,Autowried是根據類型進行註入的,但是如果某個接口存在多個實現的子類,那麼Autowried是註入哪一個?又或者說會報錯?

答案:Error create bean with ‘studnetController’,原因並不是因為StudentController裡面,而是因為StudentController裡面使用瞭Autowired進行註入,而存在多個實現的幾口expected single matching bean but found 2: banjiServiceImpl,banjiServiceImpl2,那麼解決方案是:

@Controller
public class StudnetController{
    @Autowired
    // 添加下面的註解,寫明白是用那個註入
    @Qualifier(value="studentServiceImpl2")
     private StudentService studentService;
    
    public void selectAll(){
        studentService.selectAll();
    }
   
}

到此這篇關於Spring IOC簡單理解的文章就介紹到這瞭,更多相關Spring IOC內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: