Java Code Examples for com.netflix.discovery.DiscoveryClient#DiscoveryClientOptionalArgs
The following examples show how to use
com.netflix.discovery.DiscoveryClient#DiscoveryClientOptionalArgs .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ApiMediationClientImpl.java From api-layer with Eclipse Public License 2.0 | 5 votes |
/** * Create and initialize EurekaClient instance. * * @param applicationInfoManager * @param clientConfig * @param config * @return Initialized {@link DiscoveryClient} instance - an implementation of {@link EurekaClient} */ private EurekaClient initializeEurekaClient( ApplicationInfoManager applicationInfoManager, EurekaClientConfig clientConfig, ApiMediationServiceConfig config) { Ssl sslConfig = config.getSsl(); HttpsConfig.HttpsConfigBuilder builder = HttpsConfig.builder(); if (sslConfig != null) { builder.protocol(sslConfig.getProtocol()); if (Boolean.TRUE.equals(sslConfig.getEnabled())) { builder.keyAlias(sslConfig.getKeyAlias()) .keyStore(sslConfig.getKeyStore()) .keyPassword(sslConfig.getKeyPassword()) .keyStorePassword(sslConfig.getKeyStorePassword()) .keyStoreType(sslConfig.getKeyStoreType()); } builder.verifySslCertificatesOfServices(Boolean.TRUE.equals(sslConfig.getVerifySslCertificatesOfServices())); if (Boolean.TRUE.equals(sslConfig.getVerifySslCertificatesOfServices())) { builder.trustStore(sslConfig.getTrustStore()) .trustStoreType(sslConfig.getTrustStoreType()) .trustStorePassword(sslConfig.getTrustStorePassword()); } } HttpsConfig httpsConfig = builder.build(); HttpsFactory factory = new HttpsFactory(httpsConfig); EurekaJerseyClient eurekaJerseyClient = factory.createEurekaJerseyClientBuilder( config.getDiscoveryServiceUrls().get(0), config.getServiceId()).build(); AbstractDiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); args.setEurekaJerseyClient(eurekaJerseyClient); applicationInfoManager.setInstanceStatus(InstanceInfo.InstanceStatus.UP); return this.eurekaClientProvider.client(applicationInfoManager, clientConfig, args); }
Example 2
Source File: CustomerApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/customer.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/customer.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("customer-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 3
Source File: ProductApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/product.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/product.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("product-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 4
Source File: OrderApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/order.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/order.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("order-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 5
Source File: AccountApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/account.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/account.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("account-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 6
Source File: CustomerApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/customer.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/customer.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("customer-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 7
Source File: ProductApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/product.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/product.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("product-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 8
Source File: OrderApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/order.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/order.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("order-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 9
Source File: AccountApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/account.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/account.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("account-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 10
Source File: CustomerApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/customer.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/customer.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("customer-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 11
Source File: ProductApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/product.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/product.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("product-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 12
Source File: OrderApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/order.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/order.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("order-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 13
Source File: AccountApplication.java From Mastering-Spring-Cloud with MIT License | 5 votes |
@Bean public DiscoveryClient.DiscoveryClientOptionalArgs discoveryClientOptionalArgs() throws NoSuchAlgorithmException { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); System.setProperty("javax.net.ssl.keyStore", "src/main/resources/account.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "123456"); System.setProperty("javax.net.ssl.trustStore", "src/main/resources/account.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "123456"); EurekaJerseyClientBuilder builder = new EurekaJerseyClientBuilder(); builder.withClientName("account-client"); builder.withSystemSSLConfiguration(); builder.withMaxTotalConnections(10); builder.withMaxConnectionsPerHost(10); args.setEurekaJerseyClient(builder.build()); return args; }
Example 14
Source File: EurekaComponents.java From kork with Apache License 2.0 | 5 votes |
@Bean @Deprecated // prefer to use EurekaClient interface rather than directly depending on // DiscoveryClient public DiscoveryClient discoveryClient( ApplicationInfoManager applicationInfoManager, EurekaClientConfig eurekaClientConfig, DiscoveryClient.DiscoveryClientOptionalArgs optionalArgs) { return new DiscoveryClient(applicationInfoManager, eurekaClientConfig, optionalArgs); }
Example 15
Source File: EurekaComponents.java From kork with Apache License 2.0 | 5 votes |
@Bean DiscoveryClient.DiscoveryClientOptionalArgs optionalArgs( EventBus eventBus, HealthCheckHandler healthCheckHandler) { DiscoveryClient.DiscoveryClientOptionalArgs args = new DiscoveryClient.DiscoveryClientOptionalArgs(); args.setEventBus(eventBus); args.setHealthCheckHandlerProvider(new StaticProvider<>(healthCheckHandler)); return args; }