springboot项目怎么找到启动路径
时间: 2023-11-16 16:07:08 浏览: 310
Springboot-项目启动找不到启动类
在 Spring Boot 项目中,可以使用以下方式找到启动路径:
1. 在代码中使用以下语句获取当前应用程序的启动路径:
```java
String appDir = System.getProperty("user.dir");
```
2. 在 Spring Boot 的配置文件 application.properties 或 application.yml 中设置以下属性:
```yaml
server:
port: 8080
servlet:
context-path: /myapp
```
其中 `server.port` 属性指定了应用程序所使用的端口号,`servlet.context-path` 属性指定了应用程序的上下文路径,即访问路径中的 `/myapp`。
3. 在 Spring Boot 的运行日志中查找启动路径信息。启动时会输出类似以下内容:
```
2021-09-25 12:00:00.000 INFO 1234 --- [ main] com.example.Application : Starting Application on mycomputer with PID 1234 (/path/to/my/application.jar started by user in /path/to/my)
```
其中 `/path/to/my/application.jar` 为应用程序的启动路径。
阅读全文