由于在调试时需要查看access_log日志,但是springboot默认并没有开启,因此查看了一下文档,在springboot的配置文件中添加如下设置,即可将日志输出当磁盘文件中以供查看。
#日志开关server.tomcat.access-log-enabled=true#日志格式server.tomcat.access-log-pattern=%h %l %u %t "%r" %s %b %D#日志输出目录,这里是设置为当前目录下server.tomcat.basedir=./
本文共 244 字,大约阅读时间需要 1 分钟。
由于在调试时需要查看access_log日志,但是springboot默认并没有开启,因此查看了一下文档,在springboot的配置文件中添加如下设置,即可将日志输出当磁盘文件中以供查看。
#日志开关server.tomcat.access-log-enabled=true#日志格式server.tomcat.access-log-pattern=%h %l %u %t "%r" %s %b %D#日志输出目录,这里是设置为当前目录下server.tomcat.basedir=./
转载地址:http://quuya.baihongyu.com/