

```java
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mp?serverTimezone=GMT%2B8&characterEncoding=utf8
jdbc.username=root
jdbc.password=941941
**在url中配置:**方式一:```xmljdbc.url=jdbc:mysql://localhost:3306/mp?useUnicode=true&characterEncoding=utf8
方式二:
jdbc.url=jdbc:mysql://localhost:3306/mp?suseUnicode=true&characterEncoding=utf8&useSSL=false
方式三:
jdbc.url=jdbc:mysql://localhost:3306/mp?serverTimezone=GMT%2B8&characterEncoding=utf8
