Java 连接 MySQL 的 URL 中可以配置很多属性,官方文档:https://dev.mysql.com/doc/connector-j/5.1/en/connector-j-reference-configuration-properties.html
常用配置
jdbc:mysql://localhost/test?useUnicode=true&characterEncoding=UTF-8&useSSL=false
Java 连接 MySQL 的 URL 中可以配置很多属性,官方文档:https://dev.mysql.com/doc/connector-j/5.1/en/connector-j-reference-configuration-properties.html
jdbc:mysql://localhost/test?useUnicode=true&characterEncoding=UTF-8&useSSL=false