Cannot determine embedded database driver class for database type NONE

来源:互联网 发布:未来清单软件下载 编辑:程序博客网 时间:2024/05/24 05:36

发生这个错误的原因是没有数据库驱动

原因:1.没有添加MySQL驱动

   2.springboot的application.properties不在classpath路径下,或者没有application.properties这个配置文件,或者不叫这个名字,配置文件名字必须叫application.properties

   3.配置数据库驱动不正确

spring.datasource.driver-class-name= com.mysql.jdbc.Driver
spring.datasource.url = jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8
spring.datasource.username = root
spring.datasource.password = root


阅读全文
0 0
原创粉丝点击