Adrian Cole
72c3ba80a6
Ensures Accept headers default to */*
...
Closes #123
10 years ago
Adrian Cole
db897ada3a
Merge pull request #147 from Netflix/adrian.patch
...
Adds OkHttp integration
10 years ago
Adrian Cole
49b700e6f7
Adds OkHttp integration
...
closes #134
10 years ago
Adrian Cole
194d82fa5c
Allows multiple headers with the same name; Backfills default client tests.
10 years ago
Adrian Cole
62cbe191a5
Merge pull request #145 from Netflix/adrian.named-to-param
...
Introduces feign.Param to annotate template parameters
10 years ago
Adrian Cole
067997912e
Introduces feign.@Param to annotate template parameters
...
Feign 8.x will no longer support Dagger, nor interfaces annotated with `javax.inject.@Named`. Users must migrate from `javax.inject.@Named` to `feign.@Param` via Feign v7.1+ before attempting to update to Feign 8.0.
For example, the following uses `@Param` as opposed to `@Named` to annotate template parameters.
```java
interface GitHub {
@RequestLine("GET /repos/{owner}/{repo}/contributors")
List<Contributor> contributors(@Param("owner") String owner, @Param("repo") String repo);
}
```
10 years ago
Adrian Cole
252559a070
Merge pull request #144 from Netflix/adrian.test-with-assertj
...
Removes guava test dependency in favor of AssertJ
10 years ago
Adrian Cole
3fc385a112
Removes guava test dependency in favor of AssertJ
...
AssertJ has more powerful test assertions and does not run the risk of
interfering with the classpath of main code, such as guava does. This
removes guava from test and example code and adjusts using AssertJ in
some cases.
10 years ago
Adrian Cole
a862fe6221
Merge pull request #143 from Netflix/adrian.log4j-n-rulz
...
Replace TestNG with JUnit + Rules
10 years ago
Adrian Cole
0f3947a5c8
Replace TestNG with JUnit + Rules
...
JUnit Rules, such as MockWebServerRule, reduce boilerplate setup present
in our tests. By migrating off TestNG, and onto rules, our tests become
more maintainable as JUnit is well understood.
10 years ago
Adrian Cole
32c32e72b0
Merge pull request #142 from Netflix/adrian.target-tostring
...
Adds toString to Targets. Normalizes equals/hashCode.
10 years ago
Adrian Cole
96fa7794ec
Adds toString to Targets. Normalizes equals/hashCode.
10 years ago
Adrian Cole
246e01b2fd
Merge pull request #132 from Drdoteam/patch-1
...
Update README.md
10 years ago
Jinho Shin
73902e61f2
Update README.md
...
In JAX-RS example, two Java code blocks and retaining new lines after the call to each builder.
10 years ago
Jinho Shin
e6ec0766e7
Update README.md
...
Remove more lines for unity? consistency.
Customization, Request Interceptors, are written as this form.
10 years ago
Jinho Shin
0c08ac9d33
Update README.md
...
I removed the unessential lines.
Thanks for your advice.
10 years ago
Jinho Shin
495de18cca
Update README.md
...
Hi.
In JAX-RS section, adding 'JAXRSContract' is omitted.
So, I didn't understand the JAX-RS example correctly. And I got an exception when I run it.
If adding 'JAXRSContract' is added, It is helpful to beginners like me.
Thank you.
10 years ago
Rob Spieldenner
21da4465e9
Merge pull request #131 from rspieldenner/master
...
Merge in build changes
10 years ago
Rob Spieldenner
2e28ebd41d
Merge branch '7.x'
10 years ago
Rob Spieldenner
782cc1b05f
Merge pull request #130 from rspieldenner/7.x
...
7.x
10 years ago
Rob Spieldenner
44b253e719
Build upgrades
10 years ago
Rob Spieldenner
61e63360db
Upgrade gradle to 2.2.1
10 years ago
Adrian Cole
2c19962f69
8.0.0-SNAPSHOT
10 years ago
Adrian Cole
b5ab32353a
update README
10 years ago
Adrian Cole
2c9b1502ef
Merge pull request #126 from VanRoy/master
...
Make RibbonClient configurable with FeignBuilder
10 years ago
Adrian Cole
43af8fe8bb
Merge pull request #124 from qualidafial/master
...
Upgrade Dagger dependency from 1.1.0 to 1.2.2
10 years ago
Adrian Cole
902bca3bab
Merge pull request #127 from ralscha/patch-1
...
Link to the retrofit sample is wrong
10 years ago
Ralph Schaer
c9e6f50d55
Link to the retrofit sample is wrong
10 years ago
Julien Roy
fd5e4d60bf
Make RibbonClient configurable with FeignBuilder
10 years ago
Matthew Hall
0f765ad2b8
Add warning to CHANGES.md regarding Dagger 1.2.0 upgrade.
10 years ago
Matthew Hall
35c3e4e7f5
Upgrade Dagger dependency from 1.1.0 to 1.2.2.
10 years ago
Adrian Cole
98d0423118
Merge pull request #116 from gregwhitaker/jaxb-support
...
Added JAXB Codec
10 years ago
Adrian Cole
87af8eea35
Merge pull request #121 from ahus1/master
...
fixing language hint json->java
10 years ago
Alexander Schwartz
2edd8beae0
fixing language hint json->java
10 years ago
Allen Wang
1e0066911e
Merge pull request #118 from allenxwang/master
...
Refine retry handler logic for LBClient
10 years ago
Allen Wang
fc43eedbc5
Remove unnecessary code
10 years ago
Allen Wang
24d70fa5ef
Refine the retry handler logic for LBClient.
10 years ago
amit-git
7528220333
Merge pull request #117 from amit-git/master
...
Integrate with latest ribbon release (ribbon-loadbalancer)
10 years ago
Amit Joshi
0023ae63af
Integrate with latest ribbon release (ribbon-loadbalancer)
10 years ago
Whitaker, Greg
3ced4a5283
Added support for JAXB
10 years ago
Adrian Cole
710191fe53
Merge pull request #112 from seanch87/master
...
Handle JAXRS Path annotation processes without slashes
11 years ago
sheller
ee54f394c4
Handle JAXRS Path annotation processes without slashes
11 years ago
Adrian Cole
2c0c109428
Merge pull request #110 from allenxwang/master
...
Change minor versions of dependencies to help snapshot build.
11 years ago
Allen Wang
8756f99aa0
Change minor versions of dependencies to help snapshot build.
11 years ago
Adrian Cole
9874399b76
Merge pull request #109 from Netflix/adrian.expose-InvocationHandlerFactory
...
Expose hook for reflective dispatch.
11 years ago
Adrian Cole
95a0f6bf14
Fix #105 : expose hook for reflective dispatch.
11 years ago
Adrian Cole
9efe9403ff
Merge pull request #108 from Netflix/adrian.java8
...
Make build work with java 8.
11 years ago
Adrian Cole
ac7f0ecd4a
Make build work with java 8.
11 years ago
allenxwang
716a617067
Merge pull request #100 from JulianDuniec/master
...
Fix for bug in Ribbon-Module, where query strings are not properly encod...
11 years ago
Adrian Cole
9773c6107a
Merge pull request #92 from wnagele/master
...
Fix for #85
11 years ago