第一次启动IDEA用了默认的H2数据库,成功install了也注册了账号
然后想改成mysql,启动了,msql也建表了,但是白页打不开
前端在http://127.0.0.1:8090/install#/
报错:Uncaught (in promise) RangeError: Maximum call stack size exceeded
# H2 database configuration.
# driver-class-name: org.h2.Driver
# url: jdbc:h2:file:~/halo-dev/db/halo;AUTO_SERVER=TRUE
# username: admin
# password: 123456
# MySQL database configuration.
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/halo_dev?characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
username: root
password: 123456
# h2:
# console:
# settings:
# web-allow-others: true
# path: /h2-console
# enabled: true
求解