91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Java中Spring框架之IOC如何配置

發布時間:2021-12-07 11:41:51 來源:億速云 閱讀:163 作者:小新 欄目:編程語言

這篇文章主要介紹了Java中Spring框架之IOC如何配置,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

Spring的IOC配置

Spring最重要的特性是IOC控制反轉,利于IOC我們能降低對象之間的耦合性。

IOC需要通過一定的配置實現,配置方法分為:

1)使用xml文件配置

2)使用注解配置

使用Spring的基本功能,必須先導入Spring的依賴:

  1. <dependency>

  2. <groupId>org.springframework</groupId>

  3. <artifactId>spring-context</artifactId>

  4. <version>5.1.5.RELEASE</version>

  5. </dependency>

Spring Context:向 Spring框架提供上下文信息。Spring 上下文包括企業服務,例如JNDI、EJB、電子郵件、國際化、校驗和調度功能。它包含Spring Core組件,能實現IOC的核心功能。

使用xml文件配置

  1. /**

  2. * CPU接口

  3. */

  4. public interface Cpu {

  5. void run();

  6. }

  7. /**

  8. * AMD的CPU

  9. */

  10. public class AMDCpu implements Cpu {

  11. public void run() {

  12. System.out.println("AMD的CPU正在運行....");

  13. }

  14. }

  15. /**

  16. * 內存接口

  17. */

  18. public interface Memory {

  19. void read();

  20. void write();

  21. }

  22. /**

  23. * DDR8G的內存

  24. */

  25. public class DDR8GMemory implements Memory {

  26. public void read() {

  27. System.out.println("使用DDR8G的內存讀取數據....");

  28. }

  29. public void write() {

  30. System.out.println("使用DDR8G的內存寫入數據....");

  31. }

  32. }

  33. 類似的IntelCpu和DDR16Memory類省略了代碼

  34. /**

  35. * 電腦類

  36. */

  37. public class Computer {

  38. private Cpu cpu;

  39. private Memory memory;

  40. private String brand;

  41. ...省略get\set

  42. public Computer() {
    }

            public Computer(String brand, Cpu cpu, Memory memory) {
             this.brand = brand;
         this.cpu = cpu;
         this.memory = memory;
            }

            public void start(){
         System.out.println(brand+"電腦啟動了");
         cpu.run();
         memory.read();
         memory.write();
            }

  43. }

在maven項目的resources目錄下,添加配置文件:

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. xsi:schemaLocation="http://www.springframework.org/schema/beans

  6. http://www.springframework.org/schema/beans/spring-beans.xsd

  7. http://www.springframework.org/schema/context

  8. http://www.springframework.org/schema/context/spring-context.xsd">

  9. <!-- CPU對象-->

  10. <bean id="cpu" class="com.qianfeng.springioc.demo3.IntelCpu"/>

  11. <!--Memory對象-->

  12. <bean id="memory" class="com.qianfeng.springioc.demo3.DDR16GMemory"/>

  13. <!--電腦對象-->

  14. <bean id="computer" class="com.qianfeng.springioc.demo3.Computer">

  15. <!--屬性的注入-->

  16. <property name="cpu" ref="cpu"></property>

  17. <property name="memory" ref="memory"></property>

  18. <property name="brand" value="小米電腦"></property>

  19. </bean>

  20. </beans>

配置說明:

<beans>是根標簽,代表Spring的Java對象容器

<bean>標簽代表在容器中創建一個Java對象,屬性id代表對象名,class是對象的類型。

在配置文件中首先創建了一個cpu對象和一個memory對象,然后創建了一個computer對象,computer中有Cpu類型的cpu屬性和Memory類型memory屬性以及String類型的brand屬性,這里使用依賴注入的方式給屬性賦值。

<property name="cpu" ref="cpu"></property>

property 指的是對象的屬性,name是屬性名,ref是對象引用,這里引用了前面的cpu對象。

<property name="brand" value="華碩電腦"></property>

brand屬性注入的是數值而不是對象引用,這里使用value注入值。

Spring上下文對象

Spring容器可以看做是一個JavaBean的工廠BeanFactory,BeanFactory負責創建并保存各個JavaBean,BeanFactory的子類有:

1)ClassPathXMLApplicationContext

基于XML配置文件上下文

2)AnnotationConfigApplicationContext

基于注解配置的上下文

3)FileSystemApplicationContext

基于文件系統的上下文

使用ClassPathXMLApplicationContext的方法:

  1. public class TestComputer {

  2. @Test

  3. public void testComputer(){

  4. //創建XML文件的應用程序上下文對象

  5. ClassPathXmlApplicationContext cxt =

  6. new ClassPathXmlApplicationContext("applicationContext.xml");

  7. //通過類型從容器獲得Java對象

  8. Computer computer = cxt.getBean(Computer.class);

  9. //還可以通過對象名獲得對象

  10. //        Computer computer = (Computer) cxt.getBean("computer");

  11. computer.start();

  12. }

  13. }

Java中Spring框架之IOC如何配置

使用注解配置

Spring的IOC也可以不使用配置文件,完全通過Java代碼和注解實現配置,這種配置方法代碼更加簡潔。

常用注解:

@Component

配置到類上面,Spring容器會自動掃描并添加有該注解類的對象

@Autowired

配置到屬性或set方法上,容器會將容器中同類型的對象自動注入到屬性中

@Qualifier

用于給不同的組件設置標識,用于區分多個相同類型的對象

@Value

注入一般類型的值,如:@Value(20) 、 @Value("張三")

@Configuration

加在配置類上,該類作為Spring啟動的入口

@ComponentScan

和@Configuration配合使用,加在配置類上,用于掃描包中所有@Component注解的類

  1. 在DDR8Memory類和IntelCpu類上添加@Component注解

  2. 修改Computer類:

  3. @Component

  4. public class Computer {

  5. @Value("蘋果電腦")

  6. private String brand;

  7. @Autowired

  8. private Cpu cpu;

  9. @Autowired

  10. private Memory memory;

  11. ....

  12. }

  13. @Configuration

  14. @ComponentScan("com.qianfeng.springioc.demo4")

  15. public class MyConfig {

  16. public static void main(String[] args) {

  17. //創建基于注解的上下文對象

  18. AnnotationConfigApplicationContext cxt = new AnnotationConfigApplicationContext(MyConfig.class);

  19. //獲得Computer對象

  20. Computer computer = cxt.getBean(Computer.class);

  21. computer.start();

  22. }

  23. }

Java中Spring框架之IOC如何配置

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Java中Spring框架之IOC如何配置”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

扎兰屯市| 盐亭县| 富阳市| 尖扎县| 西青区| 北安市| 含山县| 和静县| 宁武县| 左权县| 刚察县| 盐边县| 册亨县| 台州市| 喜德县| 新巴尔虎右旗| 仲巴县| 闽清县| 德钦县| 金坛市| 中西区| 桐庐县| 固始县| 苗栗市| 海兴县| 谷城县| 平武县| 遵义市| 湛江市| 公安县| 通山县| 金寨县| 香港| 东城区| 乌拉特前旗| 瑞金市| 罗源县| 石家庄市| 本溪| 娄底市| 蛟河市|