首页 > 编程语言 > 详细

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

时间:2018-12-27 22:39:20      阅读:179      评论:0      收藏:0      [点我收藏+]

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 项目所遇到的问题

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!