1 2 3 4 5 6 7 8 9
| DubboBootstrap bootstrap = DubboBootstrap.getInstance(); ApplicationConfig applicationConfig = new ApplicationConfig("tri-stub-server");
applicationConfig.setQosEnable(false); bootstrap.application(applicationConfig) .registry(new RegistryConfig(TriSampleConstants.ZK_ADDRESS)) .protocol(new ProtocolConfig(CommonConstants.TRIPLE, port)) .service(service) .start();
|