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); } }
|