驱动程序 com.mysql.jdbc.Driver 声称不接受 jdbcUrl,jbdc:mysql://localhost:3306/emp

问题描述 投票:0回答:1

MySQL 连接器是 Maven 依赖项的一部分,所有数据库属性(如 url、用户名、密码)都在 application.properties 中提及。

获取 RuntimeException,例如:

驱动程序 com.mysql.jdbc.Driver 声称不接受 jdbcUrl,jbdc:mysql://localhost:3306/emp

请帮忙解决。

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jbdc:mysql://localhost:3306/emp   
spring.datasource.username=root
spring.datasource.password=giathinh1996
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
mysql maven jdbc
1个回答
0
投票

基本上问题就在这里

spring.datasource.url=jbdc:mysql://localhost:3306/emp   

用这行代码替换上面提到的行

spring.datasource.url=jdbc:mysql://localhost:3306/emp 

您的网址有错字...

© www.soinside.com 2019 - 2024. All rights reserved.