问题:
通过MyBatis向MySQL中插入或更新操作时,中文会显示成???

解决:
在配置文件application.yml中连接数据库的地址url后面加上characterEncoding=utf8即可

spring:
  application:
    name: server # 服务名称
  datasource:
    driverClassName: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/db?characterEncoding=utf8
    username: root # 数据库账号
    password: root # 数据库密码

YOLO