我希望管理员可以使用我的日志文件,而无需ssh
到主机。
希望像http://myhost:myport/logs/app.log
一样简单。
有没有办法使用可以为我的日志文件提供服务的Spring Boot公开端点?
答案 0 :(得分:3)
将以下依赖项添加到您的应用程序:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
开箱即用,您将获得许多有用的终点,包括:/logfile
无需其他配置。