我希望管理员无需ssh
主机即可使用我的日志文件。
希望一些简单的事情http://myhost:myport/logs/app.log
。
有没有办法使用 Spring Boot 公开一个端点来服务我的日志文件?
我希望管理员无需ssh
主机即可使用我的日志文件。
希望一些简单的事情http://myhost:myport/logs/app.log
。
有没有办法使用 Spring Boot 公开一个端点来服务我的日志文件?
将以下依赖项添加到您的应用程序:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
开箱即用,您将获得许多有用的端点,包括:/logfile
无需额外配置。