jdbc 连接 mysql 8.0.11 的 jdbc.properties 配置

driver=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/(需要连接的数据库名称)? useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=false
user=(数据库账号)
password=(数据库密码)

若在pom.xml里面填写  须将'&'转义

你可能感兴趣的:(mysql)