亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring框架中控制反轉的介紹以及創建對象的方式

發布時間:2021-09-07 15:19:47 來源:億速云 閱讀:137 作者:chen 欄目:開發技術

這篇文章主要介紹“Spring框架中控制反轉的介紹以及創建對象的方式”,在日常操作中,相信很多人在Spring框架中控制反轉的介紹以及創建對象的方式問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Spring框架中控制反轉的介紹以及創建對象的方式”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

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框架中控制反轉的介紹以及創建對象的方式”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

承德市| 和政县| 龙南县| 库尔勒市| 东乌| 新干县| 叙永县| 封丘县| 象山县| 黄龙县| 仙桃市| 师宗县| 丰台区| 石楼县| 睢宁县| 桑植县| 锦屏县| 乌兰县| 八宿县| 丰顺县| 许昌市| 桐乡市| 大理市| 始兴县| 任丘市| 安康市| 驻马店市| 林州市| 平潭县| 怀仁县| 屯门区| 谷城县| 三都| 淳安县| 疏勒县| 乐安县| 敦煌市| 稷山县| 都匀市| 新乐市| 中牟县|