Improve the usability of `WebClient`
See original GitHub issueFrom an internal feed back:
What would the ideal API for building an HTTP request look like? Do you have some imaginary ideal example?
Using method chains like Spring WebClient is easy for me to write http request. Annotation pattern like Retrofit is also easy for me.I prefer the Spring WebClient way to annotation pattern.
What is the library/API you think Armeria team should benchmark?
Spring WebClient
What other features would you like to see in Armeria?
Prepare a method which maps HttpResponse to Java Object, like bodyToMono<T>
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Usability improvements to the web client - Microsoft Learn
Improved behavior of lookups on fields with table relations, such as the Description field on sales documents. The new behavior creates a ...
Read more >Improving SAP CRM WEB Usability
What are the ways that we can improve the usability of the Web Client with features like Enable Smart SearchSimpler and fewer Clicks/....
Read more >Business Central: Optimized user experience in the Web Client
In order to make it as easy and convenient as possible to use and to increase productivity at work, the usability of Business...
Read more >Building a Reactive RESTful Web Service - Spring
You will build a RESTful web service with Spring Webflux and a WebClient consumer of that service. You will be able to see...
Read more >Getting Started with Spring WebClient - VMware Tanzu
There's also a more comprehensive builder way, which will allow you to set more defaults on the WebClient if you want. For example,...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Yeah, having a class like WebClientRequestBuilder would be nice. We could extract the common methods in HttpRequestBuilder into some common interface or abstract class. What do you think, @tumile ?
https://stackoverflow.com/questions/63660975/armeria-http-client-how-to-add-query-string-parameters#comment112614741_63664409
It may be useful if we can build/execute an
HttpRequest
fluently, so that, for example, add a query parameter easily.