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

Posted Mr. Ma

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建spring boot 项目所遇到的问题相关的知识,希望对你有一定的参考价值。

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 项目所遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 性能优化

spring boot项目搭建中遇到的问题

spring boot 集成jsp

spring boot整合双持久层框架jpamybatis

Spring boot H2 数据库应用

创建spring boot 项目