1. Mybatis遇到的坑
若为INTEGER类型,在判空的时候,Mybatis会把0当做空(' ')来处理。
2. MybatisPlus一个配置,可以输出SQL语句
/** 性能分析拦截器,用于输出每条 SQL 语句及其执行时间 */
@Bean
public PerformanceInterceptor performanceInterceptor() {
PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor();
performanceInterceptor.setMaxTime(120000); // 超时会抛异常
return performanceInterceptor;
}