befb
befb

Reputation: 1

Spring Boot Where is the dispatcher servlet located?

I'm studying about spring boot and dispatcher servlet.

but I have no idea where is the exact location of dispatcher servlet. I saw two pictures describe dispatcher servlet and web container, but they are different.

I've been looking for an answer for this one, but I can't seem to find a good answer.

Q. Exact location of dispatcher servlet. first one, dispatcher servlet located in servlet container. second one, dispatcher servlet located in spring container. which one is right?

located in servlet container

located in spring container

Upvotes: -1

Views: 328

Answers (1)

Evgenii Mikhailov
Evgenii Mikhailov

Reputation: 54

DispatcherServlet class located in package "org.springframework.web.servlet" (spring-mvc.jar). Not in Tomcat container

Upvotes: 0

Related Questions