从Spring Boot的嵌入式Tomcat提供日志文件

时间:2016-07-29 11:36:56

标签: spring-boot embedded-tomcat-8

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

希望像http://myhost:myport/logs/app.log一样简单。

有没有办法使用可以为我的日志文件提供服务的Spring Boot公开端点?

1 个答案:

答案 0 :(得分:3)

Spring Boot Actuator

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

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

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

无需其他配置。