MySQL采用8.0.26版本。
1、修改application.conf文件
default.driver=com.mysql.cj.jdbc.Driver
default.url="jdbc:mysql://localhost/xxxx"
default.username=xxx
default.password="xxx"
2、build.sbt中增加MySQL的依赖
"mysql" % "mysql-connector-java" % "8.0.26",
3、persistence.xml把数据库方言给为MySQL对应的
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL8Dialect"/>
重新编译,运行成功!