springboot系列第一篇启动( 三 )

2018-12-29 14:12:59.353 INFO 21823 --- [ main] com.example.demo.DemoApplication : Started DemoApplication in 1.825 seconds (JVM running for 2.837)

可以看到日志中有一行日志为Tomcat started on port(s): 8080,这是因为在

org.springframework.boot

spring-boot-starter-web

进入这个依赖中,我们会看到如下

org.springframework.boot

spring-boot-starter-tomcat

进而可以看到

org.apache.tomcat.embed

tomcat-embed-core

org.apache.tomcat.embed

tomcat-embed-el

org.apache.tomcat.embed

tomcat-embed-websocket

推荐阅读