question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Improve the usability of `WebClient`

See original GitHub issue

From 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:open
  • Created 4 years ago
  • Reactions:2
  • Comments:8 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
trustincommented, Nov 3, 2020

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 ?

1reaction
trustincommented, Sep 1, 2020

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.

// Not the final form - just an idea
HttpRequest req =
    HttpRequest.builder(HttpMethod.GET, "/foo")
               .queryParam("bar", "2")
               .cookie(...)
               .build();
webClient.execute(req);

// and/or:
webClient.prepare(HttpMethod.GET, "/foo")
         .queryParam("bar", "2")
         .cookie(...)
         .execute(); // or .execute(String.class) for automatic conversion
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found