springboot启动扫描不到dao层接口的解决方案
作者:yangqifan_simplelife 时间:2021-06-29 19:56:06
今天启动springboot项目时失败了
解决
检查原因发现是启动类的MapperScan("")的值写到类名了,改成类所在的包名错误就修复了。
springboot 扫描不到dao层和controller
一、提示
A component required a bean of type ‘com.imooc2.product.category.dao.ProductCategoryDao' that could not be found即dao层找不到了
解决:使用@MapperScan 注解或者@MapperScans注解
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ComponentScans;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@EnableSwagger2
@SpringBootApplication
@MapperScan("com.imooc2.product.**.dao")
public class ProductApplication {//extends SpringBootServletInitializer
public static void main(String[] args) {
SpringApplication.run(ProductApplication.class, args);
}
}
二、问题:
提示controller和services层找不到
访问controller的方法显示404错误
解决:
1、启动类放到跟目录下面,如图,我的controller和service分别在com.imooc2.product的product文件夹和category文件夹里面,所以启动类要放在根目录com.imooc2.product下
原因:sprigboot 会自动扫描根目录以下的全部包
2、有可能是缓存还是项目启动类识别不了controller层和service层,或者你不想把启动类放到根目录下去默认扫描,可以更新至springboot 2.0.5.RELEASE,使用自定义扫描包注解
@ComponentScan(basePackages = {“com.imooc2.product.product”, “com.imooc2.product.category”})
或者
@SpringBootApplication(scanBasePackages = {“com.imooc2.product.product”, “com.imooc2.product.category”})
二选一即可如图所示
@SpringBootApplication(scanBasePackages = {"com.imooc2.product","com.imooc2.product.**.dao"})//二选一
@ComponentScan(basePackages = {"com.imooc2.product.product", "com.imooc2.product.category"})//二选一
@MapperScan("com.imooc2.product.**.dao")
public class ProductApplication {
public static void main(String[] args) {
SpringApplication.run(ProductApplication.class, args);
}
}
注意:不要使用错误注解
来源:https://blog.csdn.net/weixin_42065545/article/details/80976524
标签:springboot,扫描,dao层,接口
0
投稿
猜你喜欢
Android仿支付宝上芝麻信用分雷达图
2023-04-21 18:44:30
Android Studio 3.6 layout文件text模式切换问题
2022-10-06 11:28:32
Java线程池Executor用法详解
2022-02-13 01:21:16
SpringMVC响应视图和结果视图详解
2022-03-07 05:08:37
JavaGUI常用三种布局使用介绍
2023-05-19 08:01:06
c#获取相同概率随机数的算法代码
2022-09-07 21:18:13
JPA like 模糊查询 语法格式解析
2022-06-16 20:43:42
Java京东面试题之为什么HashMap线程不安全
2022-12-06 07:20:02
Android自定义UI手势密码终结版
2021-07-29 15:40:17
Springboot打包为Docker镜像并部署的实现
2023-06-05 23:11:52
Android自定义View实现APP启动页倒计时效果
2022-11-14 05:42:54
C#控制台程序使用Log4net日志组件详解
2023-02-15 19:44:26
SpringBoot定制三种错误页面及错误数据方法示例
2022-03-10 01:15:55
Flutter有无状态类与State及生命周期详细介绍
2022-12-27 15:48:53
docker 的java编译环境构建详细介绍
2023-02-10 04:08:30
unity实现场景跳转
2023-08-30 22:58:15
Dubbo服务校验参数的解决方案
2023-06-09 14:30:10
Android EventBus 3.0.0 使用总结(必看篇)
2023-09-06 06:32:41
解决feign调用接口不稳定的问题
2022-01-13 19:28:46
关于Android中自定义ClassLoader耗时问题的追查
2021-08-10 06:15:23