Spring Boot - exclude Tomcat from Spring Boot applications (2024)

December 22, 2017 | Spring Boot | Maven

Spring Boot - exclude Tomcat from Spring Boot applications (1)

You can use Spring Boot without embedded Tomcat web server if you don’t need it. Just exclude embedded Tomcat from Spring Boot Web Starter (spring-boot-starter-web).

Spring Boot Starter Web with Tomcat

Spring Boot - exclude Tomcat from Spring Boot applications (2)By default Spring Boot Starter Web contains embedded Tomcat. That’s cool. In most cases it’s very convenient - you don’t need to worry about having Tomcat web server in you Spring Boot application. Whenever you add this to your Spring Boot application embedded Tomcat is there.

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId></dependency>

Spring Boot without Tomcat

Sometimes you don’t need Tomcat to be a part of your Spring Boot applications and you want to have Spring Boot without Tomcat. In this case you have to exclude Tomcat from Spring Boot. So we should make Spring Boot exclude Tomcat as a dependency.

To exclude Tomcat from Spring Boot just add an exclusion block to the Spring Boot Starter Web dependency and at the build time Maven will exclude Tomcat from Spring Boot.

Exclude Tomcat dependency

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions></dependency>

You can use that approach to exclude embedded Tomcat from Spring Boot and also for any other exclusions

You may also find these posts interesting:

Spring Boot - exclude Tomcat from Spring Boot applications (2024)
Top Articles
Latest Posts
Article information

Author: Kerri Lueilwitz

Last Updated:

Views: 6443

Rating: 4.7 / 5 (47 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Kerri Lueilwitz

Birthday: 1992-10-31

Address: Suite 878 3699 Chantelle Roads, Colebury, NC 68599

Phone: +6111989609516

Job: Chief Farming Manager

Hobby: Mycology, Stone skipping, Dowsing, Whittling, Taxidermy, Sand art, Roller skating

Introduction: My name is Kerri Lueilwitz, I am a courageous, gentle, quaint, thankful, outstanding, brave, vast person who loves writing and wants to share my knowledge and understanding with you.