SpringBoot向IOC容器中添加组件

Springboot推荐我们通过配置类的方式向容器中添加组件

比如我们想向容器中注入一个Bean,我们可以写一个配置类,如下

SpringBoot向IOC容器中添加组件

package com.example.demo.config;

import com.example.demo.Service.HelloService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class MyAppConfig {
    @Bean
    public HelloService helloService(){
        System.out.println("向容器中添加组件");
        return new HelloService();
    }
}

@Configuration指定这是一个配置类

@Bean标注在一个方法上,方法的返回值就是Bean的类型,方法名就是Bean的id

测试一下

SpringBoot向IOC容器中添加组件

package com.example.demo;


import com.example.demo.Service.HelloService;
import com.example.demo.pojo.Hello;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoApplicationTests {
    @Autowired
    HelloService helloService;
    @Autowired
    ApplicationContext ioc;
    @Test
    public void contextLoads() {
       boolean flag = ioc.containsBean("helloService");
       System.out.println(flag);
    }

}

运行结果可以看出HelloService这个类已经被注入到IOC容器中了

SpringBoot向IOC容器中添加组件

上一篇:Quartz实现定时任务


下一篇:05.Binder系统:第8课第6节_Binder系统_JAVA实现_内部机制_Server端