Adrian Cole
b9b0613215
Merge pull request #229 from tburch/8.x
...
Support for Apache HttpClient as Feign client
10 years ago
Tristan Burch
82889da2fa
Support for Apache HttpClient as Feign client
10 years ago
Adrian Cole
767a9b6042
Allows customized request construction by exposing Request.create()
...
Users may wish to override percent encoding of query parameters.
closes #227
10 years ago
Jad Naous
6c516c16dc
Correct time decoding in RetryAfterDecoder
...
currentTimeNanos was not returning nanos.
10 years ago
Spencer Gibb
9fa8974701
RibbonClient use replaceFirst to remove host rather than other parts of the uri.
...
refactor RibbonClient to clean url in static method
fixes gh-221
10 years ago
Adrian Cole
274e5f6980
Demonstrates impact of advice to cache Feign.newInstance
...
Shows relative performance of caching various points of construction of
a Feign Api. Adds a mesobenchmark of actually performing http requests,
so that caching performance can be placed in context.
See #214
10 years ago
Adrian Cole
ed289f4d41
Fixes typos
10 years ago
Adrian Cole
d119243bdb
Corrects notes on examples
...
closes #218
10 years ago
Adrian Cole
feb49476ef
Adds JMH benchmark module
...
Starts with Contract tests as this was suggested a place we may need
caching.
See #214
10 years ago
Rob Spieldenner
92f193082c
Enable caching for gradle dependencies
10 years ago
Adrian Cole
7a07514110
Enforces source compatibility with animal-sniffer
...
Before, finding source compatibility issues relied on building with an
old JDK. This uses animal-sniffer to enforce java language level 6.
10 years ago
Adrian Cole
22b25c5696
Updates examples to feign 8.1.0
10 years ago
Rob Spieldenner
0b336327ac
Enable Maven Central sync
10 years ago
Rob Spieldenner
2429e830f9
Move to 2.2.9 for travisci release
10 years ago
Rob Spieldenner
f4623a219c
Move to 2.2.8 which has the release.travisci flag to disable certain checks on tag releases
10 years ago
Adrian Cole
1980129708
Updates to nebula 2.2.7
10 years ago
Rob Spieldenner
6aa591d0a4
Change syntax to make it clear calling a script in directory instead of an OS command
10 years ago
Rob Spieldenner
678d03ac3d
Make executable
10 years ago
Rob Spieldenner
e89ef53079
With encrypted keys
10 years ago
Rob Spieldenner
1881386ef9
Travis setup
10 years ago
Adrian Cole
98b9a9523b
Allows `@Headers` to be applied to a type
...
This supports interface-level defaults, such as Content-Type.
closes #184
10 years ago
Adrian Cole
5ca1d56369
Updates examples to feign 8.0.0
...
See #203
10 years ago
Adrian Cole
859ee39b06
Merge pull request #200 from Netflix/adrian.no-message-cause
...
Accepts codec exceptions without a message
10 years ago
Adrian Cole
c1e3996d5d
Accepts codec exceptions without a message
...
While encoding or decoding, an exception without a message can occur.
Before this change, a NPE would return as the codec exceptions null
checked the message from the cause.
10 years ago
Adrian Cole
1eaec3488d
Merge pull request #196 from Netflix/adrian.example-polish
...
Polishes GitHub example
10 years ago
Adrian Cole
b8c2c0ea3f
Polishes GitHub example
...
The GitHub example could be better organized as top-down. Also, it is
easier to show basic error decoding when there is less structure.
10 years ago
Adrian Cole
cc3dd37433
Merge pull request #195 from molindo/github-error-example
...
added ErrorDecoder example with nested Decoder
10 years ago
Stefan Fussenegger
ed0955d34a
adds ErrorDecoder example with nested Decoder
10 years ago
Brendan Nolan
2227930577
Adds LBClientFactory to enable caching of Ribbon LBClients
...
Before, LBClients were created for each request, which led to issues
such as #182 . Moreover, a user could not avoid using Ribbon's static
factories. Adding LBClientFactory allows users to control how Ribbon
resources are created.
10 years ago
Adrian Cole
9d918b7448
Merge pull request #193 from jebeaudet/fix-NPEOnEmptyQueryParam
...
Supports query params without values
10 years ago
Jacques-Etienne Beaudet
4577082495
Supports query params without values
...
Fixes NPE when building a client with a query param with no values
10 years ago
Adrian Cole
712a8c8f38
Merge pull request #185 from bstick12/issue-183
...
Retains scheme in LBClient.RibbonRequest URI
10 years ago
Brendan Nolan
05b58948f5
Retains scheme in LBClient.RibbonRequest URI
...
Before this change, we were dropping scheme, which prevented use of https.
closes #183
10 years ago
Adrian Cole
fb2b915d3c
Merge pull request #181 from Netflix/adrian.jackson-2.5.1
...
Updates to Jackson 2.5.1
10 years ago
Adrian Cole
a5093937e5
Updates to Jackson 2.5.1
10 years ago
Adrian Cole
3309b38f8e
Merge pull request #180 from Netflix/adrian.ribbon-2.0-RC13
...
Updates to Ribbon 2.0-RC13
10 years ago
Adrian Cole
4735690289
Updates to Ribbon 2.0-RC13
10 years ago
Adrian Cole
8e18341796
Merge pull request #179 from Netflix/adrian.examples-7.2.1
...
Updates examples to Feign 7.2.1
10 years ago
Adrian Cole
c53b1773ae
Updates examples to Feign 7.2.1
10 years ago
Adrian Cole
7c1558aabe
Merge pull request #178 from bstick12/ribbonclient
...
Changed RibbonClient to pass Feign Request.Options to LBClient
10 years ago
Brendan Nolan
59a159e058
Adds Request.Options support to RibbonClient
10 years ago
Adrian Cole
c6db67a422
Merge pull request #161 from jdamick/header_fixes
...
Headers substitutions were not being expanded by the value name
10 years ago
jdamick
74e23ef808
Headers substitutions were not being expanded by the value name, instead it was using the header name..
10 years ago
Adrian Cole
c6b36fa965
Merge pull request #160 from Netflix/adrian.format
...
Reformats code according to Google Java Style
10 years ago
Adrian Cole
207530d6c0
Reformats code according to Google Java Style
...
Files had various formatting differences, as did pull requests. Rather than
create our own style, this inherits and requires the well documented Google
Java Style.
10 years ago
Adrian Cole
42fc4763f8
corrects 7.2 changelog
10 years ago
Adrian Cole
e455670706
Merge pull request #157 from Netflix/adrian.emptytarget
...
Adds EmptyTarget for interfaces who exclusively declare URI methods
10 years ago
Adrian Cole
76367fe03e
Adds EmptyTarget for interfaces who exclusively declare URI methods
...
Supports cases when the base url isn't known until runtime.
Closes #98
10 years ago
Adrian Cole
69aa98fd51
Merge pull request #155 from Netflix/adrian.control-body-encoding
...
Makes body parameter type explicit
10 years ago
Adrian Cole
183a5a119c
Makes body parameter type explicit
...
Feign has `MethodMetadata.bodyType()`, but never passed it to encoders.
Encoders that register type adapters need to do so based on the
interface desired as opposed to the implementation class. This change
breaks api compatibility for < 8.x, by requiring an additional arg
on `Encoder.encode`.
see https://github.com/square/retrofit/issues/713
10 years ago