Tagged articles

EmbeddedTomcat

2 articles · Page 1 of 1
Java Tech Workshop
Java Tech Workshop
Apr 13, 2026 · Backend Development

Understanding SpringBoot Startup: From main() to Web Container Initialization

This article walks through the complete SpringBoot startup sequence, starting with the main method annotated with @SpringBootApplication, detailing the creation of SpringApplication, environment preparation, context initialization, bean loading, embedded web server setup, event publishing, and final readiness, with code examples and common pitfalls.

EmbeddedTomcatEventDrivenSpringApplication
0 likes · 18 min read
Understanding SpringBoot Startup: From main() to Web Container Initialization
Top Architect
Top Architect
Aug 22, 2021 · Backend Development

Embedding Tomcat in a Spring Boot Application: A Step‑by‑Step Tutorial

This article explains how to discover the built‑in Tomcat dependency in a SpringBoot project, add the appropriate Maven dependency, create a servlet, configure an embedded Tomcat programmatically with Java, and run the application without any external web.xml or server installation.

EmbeddedTomcatJavaSpringBoot
0 likes · 7 min read
Embedding Tomcat in a Spring Boot Application: A Step‑by‑Step Tutorial