953954955956957958959
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new SingletonFactory(getServiceClass())); }
856857858859860861862
787788789790791792793
896897898899900901902
744745746747748749750
683684685686687688689
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }
244245246247248249250251
// TODO Auto-generated method stub } protected Invoker createInvoker() { return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }
708709710711712713714
341342343344345346347