springboot中 Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datas

问题:

SpringBoot 项目未配置数据源


解决办法:

在程序主入口Main类上 过滤掉 数据源自动配置类

在公司改之前的一个SpringBoot demo时发现启动不起来…

我还是第一次遇到这个错误…

springboot中 Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datas_第1张图片

借助一下 万能的百度翻译

在这里插入图片描述

在网上也搜到了许多方法,有一种是把mybatis的依赖去除掉 但我这边去了也没啥卵用…

解决的另一种方式是 直接在main上加过滤条件好使

springboot中 Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datas_第2张图片

你可能感兴趣的:(项目搭建问题,后端)