IOC容器手动加载

手动加载IOC容器

ClassPathXmlApplicationContext context;
    public SMSSenderImplTest(){
        //--------------加载spring容器----------------//
        context = new ClassPathXmlApplicationContext(new String[] {
                "classpath:spring_echannel_dependence.xml",
                "classpath:spring_echannel.xml"
        });
        context.start();
    }

posted @ 2016-05-05 09:46  默默行走  阅读(232)  评论(0编辑  收藏  举报