Springboot+Mybatis+Clickhouse+jsp 搭建单体应用项目(二)(添加日志打印和源码地址)

一、添加yaml设置

1 logging:
2   level:
3     com.mrliu.undertow.mapper : debug
View Code

二、添加pom的Hutool工具,完善日志打印处理

1 <dependency>
2             <groupId>cn.hutool</groupId>
3             <artifactId>hutool-all</artifactId>
4             <version>5.3.10</version>
5 </dependency>
View Code

三、源码地址
https://gitee.com/liuyangfirst/springboot-clickhouse.git

原文地址:https://www.cnblogs.com/liuyangfirst/p/13424463.html