【spring boot 启动报错,无法加载dao配置文件 _springboot 】 | IT修真院·坑乎
咨询电话 : 010-59478634
切换导航
首页
我的提问
我的回答
我的点赞
消息通知
个人主页
×
提示
尚未登陆,前往官网登陆?
×
提示
尚未登陆,前往官网登陆?
spring boot 启动报错,无法加载dao配置文件
我也踩过这个坑(
1
)
已统计您的踩坑,无需重复点击
回答(1)
springboot
详细描述
*************************** APPLICATION FAILED TO START *************************** Description: Field studentDao in com.spring.spring_boot.service.impl.StudentServiceImpl required a bean of type 'com.spring.spring_boot.Dao.StudentDao' that could not be found. Action: Consider defining a bean of type 'com.spring.spring_boot.Dao.StudentDao' in your configuration.
错误截图
源码
import java.util.List; /** * @program: spring_boot * @description: student Dao * @author: Mr.Xue * @create: 2018-08-28 16:02 **/ @Repository public interface StudentDao { List
queryStudent(); } @Autowired StudentDao studentDao; @Autowired RedisTemplate redisTemplate; @Override public PageInfo
queryStudent()throws Exception{ /*PageHelper.startPage(iQuery.getPageNum(), iQuery.getPageSize());*/ List
students = studentDao.queryStudent(); log.debug("下拉刷新获取视频数据:" + students.toString()); if (students.isEmpty()) { log.debug("提醒: 没有视频card文章啦~ 赶紧去后台添加吧~"); } return new PageInfo<>(students); }
SELECT * FROM student
# MyBatis mybatis: # 多个包加 , type-aliases-package: com.spring.spring_boot.model mapper-locations: classpath:/mybatis/*.xml
编辑于2024-11-24
时间排序
热门排序
[真传弟子]JAVA-徐铭培
0
应该是yml/properties中的MyBatis的属性没有配置好,如果配置好了鼠标放在属性上会有显示的。
查看全部>
编辑于2019-07-16
首页
1
末页
去第
页
确定
Copyright ©2015 北京葡萄藤信息技术有限公司 All Rights Reserved | 京ICP备15035574号-1
复制链接
新浪微博
微信扫一扫
2625
0
10
spring boot 启动报错,无法加载dao配置文件
1
1