Skip to content

Tag: tomcat

Enable HTTP2 with Tomcat in Spring Boot

Tomcat 8.5, which will be the default in Spring Boot 1.4, supports HTTP/2. How can HTTP/2 be enabled in a Spring Boot application? Answer The most elegant and best-performing way to enable HTTP/2 with a Spring Boot application follows here. First, as mentioned in Andy Wilkinson’s answer, you need to ena…

tomcat server not starting in eclipse

my tomcat server not starting with timeout 45seconds… getting following message I need help. Please give me some solution this is an error.. hope u can view it Answer please, increase tomcat’s time-out seconds see below will help out how to increase it into eclipse, by-default tomcat’s time-…

creating spring rest services without using spring boot

I’ve followed the Getting Started tutorial on spring.io for building REEST services https://spring.io/guides/gs/rest-service/. The problem is that this tutorial only explain how to produce a standalone running jar with tomcat embedded using spring boot. Is there a way to create a project from scratch to…