(String[] args)
| 10 | public class Bootstrap { |
| 11 | |
| 12 | public static void main(String[] args) { |
| 13 | ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("config.xml"); |
| 14 | SimpleAopBean bean = context.getBean(SimpleAopBean.class); |
| 15 | bean.testB(); |
| 16 | System.out.println(bean.getClass().getSimpleName()); |
| 17 | } |
| 18 | |
| 19 | } |