原因
这是因为 MySQL 会把 tinyint(1) 自动转为 bit 导致的。

参考:https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-reference-type-conversions.html
解决方案
只需在 MySQL 连接地址上加一个 tinyInt1isBit=false 参数即可,例如:
spring.datasource.url = jdbc:mysql://xxx/demo?tinyInt1isBit=false