Spring Boot - Embedded servlet containers

https://docs.spring.io/spring-boot/docs/1.1.7.RELEASE/reference/html/howto-embedded-servlet-containers.html

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>

Links to this note