InterviewSolution
Saved Bookmarks
| 1. |
Can we override or replace the Embedded tomcat server in Spring Boot? |
|
Answer» YES, we can replace the Embedded Tomcat server with any server by using the Starter DEPENDENCY in the pom.xml file. LIKE you can use spring-boot-starter-JETTY as a dependency for using a jetty server in your PROJECT. |
|