spring @Configuration

1. @Configuration 配置类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@Configuration
public class MainConfig {

@Bean
public Person person() {
return new Person();
}
}

public class MainTest {

@Test
public void testConfig() {
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(MainConfig.class);

Person person = applicationContext.getBean(Person.class);
}
}


本文大部分转自:51CTO博客-知了123