HTTP/2 is a major revision of the HTTP protocol that improves performance by enabling multiplexed streams, header compression, and server push.
Spring Boot, which uses Tomcat as its default embedded server, supports HTTP/2 natively.
This article explains how to enable HTTP/2 in a Spring Boot application running with Tomcat.
The necessary steps include setting up a test project, creating a simple controller for testing, generating a self-signed SSL certificate, enabling HTTP/2 in Spring Boot, and running and testing HTTP/2 support.