欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

that could not be found

程序员文章站 2022-05-13 17:43:51
...
# 情景
我是在springboot创建多module的时候,遇到的错误,因为当前web项目需要用到module中的类文件
但是只扫描到了当前项目当中的类文件,所以需要指定扫描

@SpringBootApplication
@MapperScan({"cn.jhxcom.web.demo.mapper",
    "com.baomidou.mybatisplus.samples.quickstart.mapper",
    "cn.jhxcom.project.system.user.mapper",
    })
public class HaoWebDemoApplication {...}


# 解决如上所示,代码区域

在springboot启动类中添加扫描类路径@MapperScan