springboot通过配置类给容器中添加组件

使用全注解方式
1.编写配置类
@Configuration //指明当前类是一个配置类,替代spring的*.xml配置文件
public class MyConfig{

	//将方法的返回值添加到容器中,容器中这个组件的默认id就是方法名
	@Bean
    public HelloService helloService(){
     		return new HelloService();
    }

}
测试容器中有无组件
springboot通过配置类给容器中添加组件

上一篇:Spring IOC最简明理解


下一篇:Spring Boot 轻量替代框架 Solon 的架构笔记 - new