spring-boot-starter-actuator实现在UI端查看log

spring-boot-starter-actuator实现在UI端查看log

一.在pom.xml中添加依赖


	org.springframework.boot

	spring-boot-starter-actuator


二、在yml中配置actuator
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端流畅的查看日志。

你可能感兴趣的:(java,ui)