255256257258259260261262263
} } protected Invoker createInvoker() { if (getServiceBean() == null) { return new FactoryInvoker(new SingletonFactory(getServiceClass())); } return new BeanInvoker(getServiceBean()); }
723724725726727728729
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new SingletonFactory(getServiceClass())); }
895896897898899900901
856857858859860861862
932933934935936937938
959960961962963964965
866867868869870871872
910911912913914915916
662663664665666667668
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }