Spring Boot 启动错误:Error starting ApplicationContext. To display the conditions report re-run your

踩坑篇

 

如图,

 

按照某位大佬的步骤成功配置,,启动后,,

Spring Boot 启动错误:Error starting ApplicationContext. To display the conditions report re-run your_第1张图片

Spring Boot 启动错误:Error starting ApplicationContext. To display the conditions report re-run your_第2张图片

 

出现了上图的错误.

原因:

未能配置数据源:未指定“url”属性,无法配置嵌入的数据源。

无法确定合适的驱动程序类

由于我是linux系统没及时配置数据库,所以发生了报错.

 

解决方案:

Spring Boot 启动错误:Error starting ApplicationContext. To display the conditions report re-run your_第3张图片

细节的地方该加空格加空格..

 

 

然后来到了第二个错:


Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2019-10-28 23:09:10.737 ERROR 1187 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   :

 

Spring Boot 启动错误:Error starting ApplicationContext. To display the conditions report re-run your_第4张图片

 

上面的错说的是:未能找到合适的jdbc url

看见这个的第一反应是配置写错了。其实不然。检查配置后,发现是url没有被读取到,配置文件没有生效,其大概原因有以下几点:

    系统编码不正确。跑项目之前最好让项目与文件的编码对应起来
    可能有和你所在项目平级的配置文件,springboot会优先读取项目同级别目录下的配置文件
    idea没有将resource设置为资源目录

 

 

经过了不断的排查,发现还是数据库的路径没写对..mysql8.0一定要写成com.mysql.cj.jdbc.Driver(区分大小写,一个字都不能错的那种!!!!!!!!!!)
 

 

你可能感兴趣的:(javaweb)