最开始是找不到我的mapper
@MapperScan("com.**.**.**.**.mapper")
给启动类加上这个注解就可以了
,然后就是这个错误 找不到项目映射文件(*.xml)
给yml文件加上这个好了
mybatis-plus:
mapper-locations: classpath:mapper/*.xml
一写代码就是各种错误,特此记录
最开始是找不到我的mapper
@MapperScan("com.**.**.**.**.mapper")
给启动类加上这个注解就可以了
,然后就是这个错误 找不到项目映射文件(*.xml)
给yml文件加上这个好了
mybatis-plus:
mapper-locations: classpath:mapper/*.xml
一写代码就是各种错误,特此记录