Description: Cannot determine embedded database driver class for database type NONE 解决

北城以北 提交于 2020-01-08 23:51:03

环境eclipse 4.7  jdk1.8    搭建springcloud子父项目报错

出现了这两种报错

 

  

 

 解决  加上下面两个注解

@ComponentScan(basePackages = {"com.wf.zhang.springcloud.dao"})
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
@ComponentScan(basePackages = {"com.wf.zhang.springcloud.dao"})
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
@SpringBootApplication
public class DeptProvider8001_App {
    public static void main(String[] args) {
        SpringApplication.run(DeptProvider8001_App.class, args);
    }
}

 

 
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!