您好,登錄后才能下訂單哦!
這篇文章主要介紹了Java中Spring框架之IOC如何配置,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
Spring最重要的特性是IOC控制反轉,利于IOC我們能降低對象之間的耦合性。
IOC需要通過一定的配置實現,配置方法分為:
1)使用xml文件配置
2)使用注解配置
使用Spring的基本功能,必須先導入Spring的依賴:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.1.5.RELEASE</version>
</dependency>
Spring Context:向 Spring框架提供上下文信息。Spring 上下文包括企業服務,例如JNDI、EJB、電子郵件、國際化、校驗和調度功能。它包含Spring Core組件,能實現IOC的核心功能。
/**
* CPU接口
*/
public interface Cpu {
void run();
}
/**
* AMD的CPU
*/
public class AMDCpu implements Cpu {
public void run() {
System.out.println("AMD的CPU正在運行....");
}
}
/**
* 內存接口
*/
public interface Memory {
void read();
void write();
}
/**
* DDR8G的內存
*/
public class DDR8GMemory implements Memory {
public void read() {
System.out.println("使用DDR8G的內存讀取數據....");
}
public void write() {
System.out.println("使用DDR8G的內存寫入數據....");
}
}
類似的IntelCpu和DDR16Memory類省略了代碼
/**
* 電腦類
*/
public class Computer {
private Cpu cpu;
private Memory memory;
private String brand;
...省略get\set
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();
}
}
在maven項目的resources目錄下,添加配置文件:
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
<!-- CPU對象-->
<bean id="cpu" class="com.qianfeng.springioc.demo3.IntelCpu"/>
<!--Memory對象-->
<bean id="memory" class="com.qianfeng.springioc.demo3.DDR16GMemory"/>
<!--電腦對象-->
<bean id="computer" class="com.qianfeng.springioc.demo3.Computer">
<!--屬性的注入-->
<property name="cpu" ref="cpu"></property>
<property name="memory" ref="memory"></property>
<property name="brand" value="小米電腦"></property>
</bean>
</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容器可以看做是一個JavaBean的工廠BeanFactory,BeanFactory負責創建并保存各個JavaBean,BeanFactory的子類有:
1)ClassPathXMLApplicationContext
基于XML配置文件上下文
2)AnnotationConfigApplicationContext
基于注解配置的上下文
3)FileSystemApplicationContext
基于文件系統的上下文
使用ClassPathXMLApplicationContext的方法:
public class TestComputer {
@Test
public void testComputer(){
//創建XML文件的應用程序上下文對象
ClassPathXmlApplicationContext cxt =
new ClassPathXmlApplicationContext("applicationContext.xml");
//通過類型從容器獲得Java對象
Computer computer = cxt.getBean(Computer.class);
//還可以通過對象名獲得對象
// Computer computer = (Computer) cxt.getBean("computer");
computer.start();
}
}
Spring的IOC也可以不使用配置文件,完全通過Java代碼和注解實現配置,這種配置方法代碼更加簡潔。
常用注解:
@Component
配置到類上面,Spring容器會自動掃描并添加有該注解類的對象
@Autowired
配置到屬性或set方法上,容器會將容器中同類型的對象自動注入到屬性中
@Qualifier
用于給不同的組件設置標識,用于區分多個相同類型的對象
@Value
注入一般類型的值,如:@Value(20) 、 @Value("張三")
@Configuration
加在配置類上,該類作為Spring啟動的入口
@ComponentScan
和@Configuration配合使用,加在配置類上,用于掃描包中所有@Component注解的類
在DDR8Memory類和IntelCpu類上添加@Component注解
修改Computer類:
@Component
public class Computer {
@Value("蘋果電腦")
private String brand;
@Autowired
private Cpu cpu;
@Autowired
private Memory memory;
....
}
@Configuration
@ComponentScan("com.qianfeng.springioc.demo4")
public class MyConfig {
public static void main(String[] args) {
//創建基于注解的上下文對象
AnnotationConfigApplicationContext cxt = new AnnotationConfigApplicationContext(MyConfig.class);
//獲得Computer對象
Computer computer = cxt.getBean(Computer.class);
computer.start();
}
}
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Java中Spring框架之IOC如何配置”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。