Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured
问题截图如下:
有效解决方案:
在启动类上添加@springbootApplication注解的时候,添加exclude,如下:
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。