Package com.quickwebframework.ioc.spring.service.impl

Examples of com.quickwebframework.ioc.spring.service.impl.SpringIocFrameworkService


  public void start(BundleContext context) throws Exception {
    Activator.context = context;

    // 注册依赖注入服务
    springIocFrameworkService = new SpringIocFrameworkService();
    iocFrameworkServiceRegistration = context.registerService(
        IocFrameworkService.class.getName(), springIocFrameworkService,
        null);
    // 添加插件监听器
    context.addBundleListener(bundleListener);
View Full Code Here

TOP

Related Classes of com.quickwebframework.ioc.spring.service.impl.SpringIocFrameworkService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.