Spring Boot - Embedded servlet containers
Table of Contents
Changing the web container from default
We can change the default web container just by adding a new dependency, for example, to the Jetty server:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>