2023-06-06 11:10:04.686 INFO 37284 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2023-06-06 11:10:04.686 INFO 37284 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1174 ms Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter. Property 'mapperLocations' was not specified. 2023-06-06 11:10:05.347 INFO 37284 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html] 2023-06-06 11:10:05.673 INFO 37284 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8090 (http) with context path '' 2023-06-06 11:10:05.690 INFO 37284 --- [ main] com.sict.Xboot013Application : Started Xboot013Application in 2.593 seconds (JVM running for 4.028)
时间: 2024-04-26 16:24:41 浏览: 95
这是Spring Boot应用启动时的日志信息。其中,第一行显示正在初始化Spring嵌入式WebApplicationContext,第二行显示根WebApplicationContext已完成初始化,用时1174毫秒。第三行显示MyBatis的日志输出适配器为'org.apache.ibatis.logging.stdout.StdOutImpl',即使用标准输出流作为日志输出。第四行显示未指定'mapperLocations'属性,表示未指定MyBatis映射文件的位置。第五行显示添加了欢迎页处理器映射,即将静态资源中的index.html作为欢迎页。第六行显示Tomcat已启动,监听8090端口,应用上下文路径为空。最后一行显示应用程序已启动,并在2.593秒内完成启动,JVM已运行4.028秒。
阅读全文