Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用命令重新启动 openshift 应用程序时,ctl_app restart我的数据库编码中断。例如,在数据库中重新启动之前,我有文本“jabłko”,但重新启动后它是“jab?ko”。我该如何解决?应用程序是使用 jsf2 + mysql 创建的。
ctl_app restart
我已经修好了。我需要做的就是将 mysql 服务器编码更改为 utf8,方法是将其添加到 my.conf。
character-set-server=utf8 collation-server=utf8_unicode_ci
到mysqld节
mysqld