237238239240241242243244245
} } protected Invoker createInvoker() { if (getServiceBean() == null) { return new FactoryInvoker(new SingletonFactory(getServiceClass())); } return new BeanInvoker(getServiceBean()); }
872873874875876877878
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new SingletonFactory(getServiceClass())); }
652653654655656657658
} } } } protected Invoker createInvoker() { return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }
306307308309310311312313
// TODO Auto-generated method stub } protected Invoker createInvoker() { return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }
255256257258259260261262263
211212213214215216217218219
} protected Invoker createInvoker() { if (getServiceBean() == null) { return new FactoryInvoker(new SingletonFactory(getServiceClass())); } return new BeanInvoker(getServiceBean()); }
718719720721722723724
959960961962963964965
924925926927928929930
910911912913914915916