配置文件路径错误,正确格式为
spring.datasource.url=jdbc:mysql://localhost:3306/student
如果数据库是mysql6版本,还应加上时区, 所以完整写法:
url = jdbc:mysql://localhost:3306/student?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false
注意:这里的student是我的数据库,根据自己的数据库更改