(String[] args)
| 11 | public class Bootrap { |
| 12 | |
| 13 | public static void main(String[] args) { |
| 14 | AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(SimpleBeanConfig.class); |
| 15 | SimpleBean simpleBean = context.getBean(SimpleBean.class); |
| 16 | System.out.println(simpleBean.getStudent().getName()); |
| 17 | System.out.println(Arrays.toString(context.getBeanDefinitionNames())); |
| 18 | } |
| 19 | |
| 20 | } |
nothing calls this directly
no test coverage detected