使用全注解方式
1.编写配置类
@Configuration //指明当前类是一个配置类,替代spring的*.xml配置文件
public class MyConfig{
//将方法的返回值添加到容器中,容器中这个组件的默认id就是方法名
@Bean
public HelloService helloService(){
return new HelloService();
}
}
测试容器中有无组件
2024-04-03 13:49:24
使用全注解方式
1.编写配置类
@Configuration //指明当前类是一个配置类,替代spring的*.xml配置文件
public class MyConfig{
//将方法的返回值添加到容器中,容器中这个组件的默认id就是方法名
@Bean
public HelloService helloService(){
return new HelloService();
}
}
测试容器中有无组件