动态修改JAVA日志级别需要在项目中引入:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
</dependency>
然后执行:
curl 'http://127.0.0.1:port/actuator/loggers/包名称 ' -i -X POST -H 'Content-Type: application/json' -d '{"configuredLevel":"debug"}'
具体可以参考《spring-boot-actuator-web-api.pdf》