spring boot 通过jpa连接mysql失败

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 通过jpa连接mysql失败相关的知识,希望对你有一定的参考价值。

Unable to create initial connections of pool.

java.sql.SQLException: Access denied for user ''@'localhost' (using password: NO)

步骤一:在pom.xml文件中添加mysql和JPA的相关Jar包依赖,具体添加位置在dependencies中,具体添加的内容如下所示。

<!--数据库相关配置-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.11</version>
</dependency>

步骤二:在application.properties配置文件中加入数据库的相关配置,配置信息如下所示。

spring.datasource.url = jdbc:mysql://localhost:3306/webtest
spring.datasource.username = root
spring.datasource.password = 220316
spring.datasource.driverClassName = com.mysql.jdbc.Driver
# Specify the DBMS
spring.jpa.database = MYSQL
# Show or not log for each sql query
spring.jpa.show-sql = true
# Hibernate ddl auto (create, create-drop, update)
spring.jpa.hibernate.ddl-auto = update
# Naming strategy
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
# stripped before adding them to the entity manager)
spring.jpa.properties.hibernate.dialect = org.hibernate.dial
参考技术A Mysql服务没打开

以上是关于spring boot 通过jpa连接mysql失败的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot JPA 连接数据库

Spring boot jpa mysql 连接数据库SSL错误

Spring Boot : ORM 框架 JPA 与连接池 Hikari

Spring Boot - JPA 或 SQL 查询在连接表中查找最常见的项目?

MYSQL Workbench 未填充 Spring Boot JPA 实体的表数据

本地时区存储在 MySQL 中的 Spring Boot JPA 时间