[ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter :
启动项目之后,无法成功运行,曝出这样的错误[restartedMain] o.s.b.d.LoggingFailureAnalysisReporter:这个错误可能在pom.xml里引入了mybatis-spring-boot-starter但没有用到DataSource(下载数据库的jar包却没有用到)一般有两种方法,一是去pom.xml文件里面把有关数据库的依赖文件删掉,比如下面这几个还有另外
·
启动项目之后,无法成功运行,曝出这样的错误
[ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter :
这个错误可能在pom.xml里引入了mybatis-spring-boot-starter但没有用到DataSource(下载数据库的jar包却没有用到)
一般有两种方法,一是去pom.xml文件里面把有关数据库的依赖文件删掉,比如下面这几个
还有另外一种就是在启动文件里面的@SpringBootApplication 后面添加(exclude = {DataSourceAutoConfiguration.class})这句话,然后重新启动项目就可以了!
更多推荐
已为社区贡献2条内容
所有评论(0)