consul-api
consul-api copied to clipboard
Java client for Consul HTTP API
We're currently using this library to register service health checks but we're in the process of now building out a service mesh for services to communicate through. This library doesn't...
could u tell me how can i get the source code of consul-api:1.4.2
Hi. It's been reported at https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13956 that Apache HttpClient versions prior to version `4.5.13` and `5.0.3` can misinterpret malformed authority component in request URIs passed to the library as java.net.URI...
httpclient up to version 4.5.13 (exluding) has known vulnerability CVE-2020-13956
To delete a key and all subkeys, we need recurse parameter. see https://www.consul.io/api-docs/kv ``` recurse (bool: false) - Specifies to delete all keys which have the specified prefix. Without this,...
Currently the client can use an acl token, e.g., ``` @Override public Response setKVBinaryValue(String key, byte[] value, String token, PutParams putParams, QueryParams queryParams) { Request request = Request.Builder.newBuilder() .setEndpoint("/v1/kv/" +...
Would it be any interest to be able to make a ConsulClient with a given QueryParams and acl token?
So that it is not needed to provide them again for every call. i.e. Instead of doing this: c = new ConsulClient(); c.getCatalogService(someServiceName, someTag, QueryParams.DEFAULT, someACLToken); do this: c =...
Hi, We started to see performance problems in our consul infrastructure because we observed all our java microservices are using the full pool of connections. We are using sping boot...
This pull request solves https://github.com/Ecwid/consul-api/issues/235 and https://github.com/spring-cloud/spring-cloud-consul/issues/549
jaxb has been removed from jdk >=11. Explicitly add dependency to correct ClassNotFound exception from KV GetValue