项目报错问题以及解决
1.报错一:Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. -- 配置数据源失败:未指定“url”属性,无法配置嵌入式数据源。
解决方法1:添加 exclude= {DataSourceAutoConfiguration.class}
@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})
解决方法2:添加数据源
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/mysql?useUnicode=true&characterEncoding=UTF-8&&serverTimezone=GMT
username: root
password: 123456
报错 二: java.lang.AbstractMethodError: null --原因 :
在使用springcloud的时候运行报这个错,原因是版本冲突导致
解决方法一:替换spring cloud 版本
--好记性不如烂笔头
spring boot 集成gateway