🌸 问题描述
- 在启动jeesite连接本地数据库初始化的时候,在appllication.yml中进行数据库配置 启动空项目是,报错 Public Key Retrieval is not allowed
解决方案
- 修改appllication.yml的url,添加
allowPublicKeyRetrieval=true
# 数据库连接
jdbc:
# Mysql 数据库配置
type: mysql
driver: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3308/jeesite?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true
username: root
password: admin
testSql: SELECT 1