整合通用mapper 清除 No MyBatis mapper was found in 警告

丌官信厚
2023-12-01

一般整合了 通用mapper之后,启动的时候会有一个警告信息:

 warn  No MyBatis mapper was found in xxx 

这个一般不会影响springboot的运行,但是有强迫症的人看着还是比较难受的。
解决方法很简单,写一个 mapper接口让它找到就行了


package com.dadi.webbase.framework.mapper;

import org.apache.ibatis.annotations.Mapper;

/**
 * 主要用于清除  No MyBatis mapper was found in  警告信息
 * @author 大D
 */
@Mapper
public interface NoWarnMapper {

}


重启启动springboot 世界清静了。

 类似资料: