2

我希望管理员无需ssh主机即可使用我的日志文件。

希望一些简单的事情http://myhost:myport/logs/app.log

有没有办法使用 Spring Boot 公开一个端点来服务我的日志文件?

4

1 回答 1

3

Spring Boot 执行器

将以下依赖项添加到您的应用程序:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

开箱即用,您将获得许多有用的端点,包括:/logfile

无需额外配置。

于 2016-07-29T14:45:31.993 回答