构建bean文件:
1
2
3
|
public class People { private String name = "小明" ; } |
编写配置类:
1
2
3
4
5
6
7
8
9
|
@Configuration @Import (ApplicationConfig2. class ) public class ApplicationConfig { @Bean public People getPeople(){ return new People(); } } |
@configuration:说明这是一个配置类,功能几乎等同于<beans>标签
@Bean:说明这是一个bean,方法的返回值也就是<bean>中的class属性,方法的名称就是<bean>中的id
@Import:用于导入其它的配置类,相当于<beans>下的<import>标签
编写测试类:
1
2
3
4
5
6
7
8
|
public class MyTest { public static void main(String[] args) { ApplicationContext context = new AnnotationConfigApplicationContext( "com.guan.config" ); People people = context.getBean( "getPeople" ,People. class ); System.out.println(people.getName()); } } |
注意:这里使用AnnotationConfigApplicationContext类获得上下文
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/Arno-vc/p/13393391.html