1.控制台打印sql语句


这个日志放在 \resources 文件夹下面

日志问题 - 图1
需要注意的是
配置文件里面修改一下
日志问题 - 图2

ü web.xml中的配置如下

  1. <!-- 加载log4j配置文件 -->
  1. <context-param><br /> <param-name>log4jConfigLocation</param-name><br /> <param-value>classpath:log4j.properties</param-value><br /> <!-- <param-value>/WEB-INF/log4j.xml</param-value> --><br /> </context-param><br /> <listener><br /><listener-class>org.springframework.web.util.Log4jConfigListener</listener-class><br /></listener><br /> <br /> <br /> <br /> <br />ü 如果是SpringBoot :<br /> <br />application.properties 这个配置文件是 **logging.level.com.itheima.dao**=**debug**<br /> <br />

2.怎么弄就是不打印错误日志


如果ControllerAdvice类里面有类似的错误就注释掉.下面的会捕获错误异常信息.

| // 捕捉其他所有异常
@ExceptionHandler(Exception.class)
@ResponseStatus(HttpStatus.BAD_REQUEST)
public ResponseBean globalException(HttpServletRequest request, Throwable ex) {
return new ResponseBean(getStatus(request).value(), ex.getMessage(), null);
}注释掉 | | —- |