java – 无法使用mysql和hibernate持久化emojis

前端之家收集整理的这篇文章主要介绍了java – 无法使用mysql和hibernate持久化emojis前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我实际上已在Stackoverflow上多次发现此问题,但解决方案对我没有帮助.

我在我的Android应用程序中有一个聊天模块,并希望在我的服务器数据库中保留消息,这可以正常工作,直到出现像emojis这样的特殊字符.

ERROR: Incorrect string value: '\xF0\x9F\x98\x81' for column 'message' at row 1
...
...
Caused by: java.sql.sqlException: Incorrect string value: '\xF0\x9F\x98\x81' for column 'message' at row 1
    at com.MysqL.jdbc.sqlError.createsqlException(sqlError.java:1084)
    at com.MysqL.jdbc.MysqLIO.checkErrorPacket(MysqLIO.java:4232)
    at com.MysqL.jdbc.MysqLIO.checkErrorPacket(MysqLIO.java:4164)
    at com.MysqL.jdbc.MysqLIO.sendCommand(MysqLIO.java:2615)
    at com.MysqL.jdbc.MysqLIO.sqlQueryDirect(MysqLIO.java:2776)
    at com.MysqL.jdbc.ConnectionImpl.execsql(ConnectionImpl.java:2838)
    at com.MysqL.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2082)
    at com.MysqL.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2334)
    at com.MysqL.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2262)
    at com.MysqL.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2246)
    at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.executeUpdate(ResultSetReturnImpl.java:187)
... 23 more

我的环境是:

-MysqL 5.6
-Tomcat 8.0.8
-Hibernate 4.3.5
-JDK 1.8.0_05

这是带有问题的列的用过的表’message’:

这些是我在persistence.xml(2.1版)中的属性

MysqL.jdbc.Driver" />
MysqL://localhost:3306/gamedb?useUnicode=true&characterEncoding=UTF-8" />
MysqL5Dialect" />

现在我尝试了以下解决方案,没有效果

-Change datatype of 'message' from varchar to longtext
-Change collation of 'message' to utf8mb4
-Change collation of table to utf8mb4
-Append url with "?useUnicode=true&characterEncoding=UTF-8"
-Set character-set-server of MysqL to utf8mb4

我认为表情符号正确传输到服务器,然后它会持续显示消息,然后将其广播回应用程序并正确显示.

最佳答案
我曾经遇到过同样的问题.我不知道一个漂亮的解决方案,但这对我有用.

创建Session对象后,我手动更改了连接排序规则:

s.doReturningWork(new ReturningWorksqlException
    {
        try(Statement stmt = conn.createStatement()) {
            stmt.executeQuery("SET NAMES utf8mb4");
        }

        return null;
    }
});
原文链接:https://www.f2er.com/mysql/433799.html

猜你在找的MySQL相关文章