Feign is a java to http client binder inspired by Retrofit, JAXRS-2.0, and WebSocket. Feign's first goal was reducing the complexity of binding Denominator uniformly to http apis regardless of restfulness.
Questions tagged [feign]
635 questions
-1
votes
1 answer
Remove method name from posted comment
I made a code which add comments on my localhost:3000 but its parsing to much info i want to remove "commentModel" but if i remove it from CommentRq class i get errors
comment example:
{ "commentModel": { "comment": "komentarz", "date": "3/6/19…

p0l0
- 11
- 4
-1
votes
2 answers
Automatically encode request body object into JSON
I'm using OpenFeign/feign to send API requests:
import feign.Body
import feign.Param
import feign.RequestLine
interface ApiServiceInterface {
@RequestLine("POST /container/{cid}/key/bulk")
@Body("{bulk}")
public void bulk(@Param("cid")…

MonkeyMonkey
- 826
- 1
- 6
- 19
-2
votes
1 answer
Feign client on Java - extract required data from json
I am new in Fiegn. I need to extract list of gif url from this response - https://api.giphy.com/v1/gifs/search?api_key=WXpCt1X1tDwup2N1YRcBqfI38edEvweb&q=rich.
I dont need main part of data, i want convert this to list of gif url. How to do it?
My…

alex_us
- 11
- 3
-3
votes
1 answer
How does your project handle the situation when feign calls the remote method to return to null?
How does your project handle the situation when feign calls the remote method to return to null?

zhitang zhuang
- 1
- 1