您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么為Spring容器添加組件,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
建個TestBean類
public class TestService { }
新建一個beans.xml,寫一個service的bean配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="testService" class="com.example.springboot.properties.service.TestService"></bean> </beans>
然后可以Application類里直接引用,也可以加載Configuration配置類上面
import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.ImportResource; @SpringBootApplication @ImportResource(locations = {"classpath:beans.xml"}) public class SpringbootPropertiesConfigApplication { public static void main(String[] args) { SpringApplication.run(SpringbootPropertiesConfigApplication.class, args); } }
Junit測試類:
import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.context.ApplicationContext; @SpringBootTest class SpringbootPropertiesConfigApplicationTests { //裝載ioc容器 @Autowired ApplicationContext ioc; @Test void contextLoads() { //測試這個bean是否已經加載到Spring容器 boolean flag = ioc.containsBean("testService"); System.out.println(flag); } }
經過測試,返回的是true,ok,換Springboot注解的方式實現
新建一個PropertiesConfig配置類,注意:組件的id就是方法名
import com.example.springboot.properties.service.TestService; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration //@Configuration注解實踐上也是一個Component public class PerpertiesConfig { //通過@Bean注解將組件添加到Spring容器,組件的id就是方法名 @Bean public TestService testService1(){ return new TestService(); } }
Junit測試繼續:
import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.context.ApplicationContext; @SpringBootTest class SpringbootPropertiesConfigApplicationTests { @Autowired ApplicationContext ioc; @Test void contextLoads() { //傳方法名testService1 boolean flag = ioc.containsBean("testService1"); System.out.println(flag); } }
以上就是怎么為Spring容器添加組件,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。