新建springboot项目启动出错:Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded datasource could be configured.
出现错误的原因是我在官网[https://start.spring.io/]生成框架代码的时候,加入的Mybatis依赖。因此,autoconfig会去读取数据源配置,而新建的项目还没有配置数据源,所以会导致异常出现。
解决办法:
1.去掉maven数据库依赖;
2.在启动类的@EnableAutoConfiguration或@SpringBootApplication中添加exclude = {DataSourceAutoConfiguration.class},排除此类的autoconfig。启动以后就可以正常运行。
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
public class BdservoApplication {
public static void main(String[] args) {
SpringApplication.run(BdservoApplication.class, args);
}
}
最新评论
本来在正常下载,突然就不能下载,并出现报错:a socket operation was attempted to an unreachable network。请问是什么原因呢
试了,还是不行,能不能更新一下
试了,确实不行,能不能更新一下
也推荐一下我自己写的 https://twitdown.com