springboot 启动文字
时间: 2023-10-14 09:10:57 浏览: 216
springboot项目启动脚本
当 Spring Boot 应用程序启动时,控制台会输出很多信息,包括应用程序的端口、自动配置信息等。一般来说,控制台输出的信息应该类似下面这样:
```
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.3.4.RELEASE)
2021-01-01 00:00:00.000 INFO 1234 --- [ main] com.example.demo.Application : Starting Application on my-computer with PID 1234 (C:\path\to\application.jar started by user in C:\path\to)
2021-01-01 00:00:00.000 INFO 1234 --- [ main] com.example.demo.Application : No active profile set, falling back to default profiles: default
2021-01-01 00:00:01.000 INFO 1234 --- [ main] com.example.demo.Application : Started Application in 1.234 seconds (JVM running for 4.567)
```
这些信息包括:
- 应用程序的名称和版本号(上面的 `Spring Boot` 和 `v2.3.4.RELEASE`)
- 应用程序的启动时间和日期(第三行 `2021-01-01 00:00:00.000`)
- 应用程序的主类和 PID(第二行 `com.example.demo.Application on my-computer with PID 1234`)
- 应用程序的配置文件信息(第四行 `No active profile set, falling back to default profiles: default`)
- 应用程序启动所需时间(最后一行 `Started Application in 1.234 seconds (JVM running for 4.567)`)
阅读全文