赞
踩
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
management:
endpoints:
web:
exposure:
include: '*'
endpoint:
logfile:
external-file: ${log.file.name} ##配置log的path
health:
show-details: alwats
restart:
enable: true ##配置重启
metrics:
signalfx:
enable: false
配置完成后,查看log的请求:www.host:post/xxx/actuator/logfile
总结:spring 项目配置在UI端查看日志,比较简单,以及还可以配置restart application的功能。一般在UI端查看日志时,要注意日志文件不能太大,不然UI端加载很慢,所以一般都是通过配置logback-spring.xml,根据日志文件大小来分割日志,实现在UI端流畅的查看日志。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。