There is HTTP client in IDEA. It allows to save HTTP requests to web servers in a files and run its later. It helps in development very well.
Simple GET request:
### GET request with a header
GET https://httpbin.org/ip
Accept: application/json
But request can be made to HTTP/1 & HTTPS servers only.
Is it possible to make request to HTTP/2 servers with IDEA HTTP client?