码迷,mamicode.com
首页 > 编程语言 > 详细

创建spring boot 项目所遇到的问题

时间:2018-12-27 22:47:08      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:启动   报错   source   jdb   配置文件   scope   遇到   com   pen   

1.添加完MySQL和jdbc约束后,在配置文件内spring.datasource.driver-class-name=com.mysql.jdbc.Driver 报错,显示找不到驱动包,原因是:

<dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>provided</scope>
        </dependency>

 添加上scope约束,重新导入就好了。然后再次启动项目,仍然报异常:

Loading class `com.mysql.jdbc.Driver‘. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver‘. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

 意思是驱动包内的驱动类换了,改为:spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver  后就好了。

创建spring boot 项目所遇到的问题

标签:启动   报错   source   jdb   配置文件   scope   遇到   com   pen   

原文地址:https://www.cnblogs.com/blog411032/p/10187464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!