Field * in * required a bean of type '*' that could not be
Field testDao in com.service.TestService required a bean of type ‘com.dao.TestDao’ that could not be found.
没有找到dao层
解决:
添加@ComponentScan(“dao”)在spring boot 启动类型dao为你dao层的文件夹名称
Field testDao in com.service.TestService required a bean of type ‘com.dao.TestDao’ that could not be found.
没有找到dao层
解决:
添加@ComponentScan(“dao”)在spring boot 启动类型dao为你dao层的文件夹名称