签到成功

知道了

CNDBA社区CNDBA社区

Mysql无法存emoji表情的解决方法

2018-07-19 18:31 2904 0 原创 Mysql JAVA
作者: Expect-乐

1.TOMCAT日志报错信息

错误信息如下:http://www.cndba.cn/Expect-le/article/2903

http://www.cndba.cn/Expect-le/article/2903

; uncategorized SQLException for SQL []; SQL state [HY000]; error code [1366]; Incorrect string value: '/xF0/x9F/x98/x82' for column 'CONTENT' at row 1; nested exception is java.sql.SQLException: Incorrect string value: '/xF0/x9F/x98/x82' for column 'CONTENT' at row 1}
### Error updating database.  Cause: java.sql.SQLException: Incorrect string value: '/xF0/x9F/x98/x82' for column 'CONTENT' at row 1
### Cause: java.sql.SQLException: Incorrect string value: '/xF0/x9F/x98/x82' for column 'CONTENT' at row 1
; uncategorized SQLException for SQL []; SQL state [HY000]; error code [1366]; Incorrect string value: '/xF0/x9F/x98/x82' for column 'CONTENT' at row 1; nested exception is java.sql.SQLException: Incorrect string value: '/xF0/x9F/x98/x82' for column 'CONTENT' at row 1
Caused by: java.sql.SQLException: Incorrect string value: '/xF0/x9F/x98/x82' for column 'CONTENT' at row 1

2.解决方法

1) 修改Mysql数据库的字符集为utf8mb4
修改/etc/my.cnf,将字符集修改如下,先不要急着重启数据库。http://www.cndba.cn/Expect-le/article/2903

[client]
default-character-set = utf8mb4

[mysql]
default-character-set = utf8mb4

[mysqld]
character-set-client-handshake = FALSE
character-set-server = utf8mb4
collation-server = utf8mb4_unicode_ci
init_connect='SET NAMES utf8mb4'

注意:mysql版本是5.5.3及以上版本才支持utf8mb4字符集
2) 将存储表情的相关字段和表的字符集修改为utf8mb4http://www.cndba.cn/Expect-le/article/2903http://www.cndba.cn/Expect-le/article/2903

http://www.cndba.cn/Expect-le/article/2903

ALTER TABLE B_DOC_COMMENT CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE B_DOC_COMMENT modify CONTENT VARCHAR(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;

3) 确认JDBC的mysql connector版本要大于5.1.13,否则还是无法插入
下载链接:
https://dev.mysql.com/downloads/connector/j/
然后将mysql-connector-java-5.1.46-bin.jar文件替换掉原来的即可http://www.cndba.cn/Expect-le/article/2903http://www.cndba.cn/Expect-le/article/2903http://www.cndba.cn/Expect-le/article/2903

最后重启Mysql和应用程序(Tomcat)即可

http://www.cndba.cn/Expect-le/article/2903

版权声明:本文为博主原创文章,未经博主允许不得转载。

emoji Mysql

用户评论
* 以下用户言论只代表其个人观点,不代表CNDBA社区的观点或立场
Expect-乐

Expect-乐

关注

Without the continuous bitter cold, there can be no fragrant plum blossom

  • 336
    原创
  • 6
    翻译
  • 100
    转载
  • 41
    评论
  • 访问:1547983次
  • 积分:1957
  • 等级:核心会员
  • 排名:第4名
精华文章
    最新问题
    查看更多+
    热门文章
      热门用户
      推荐用户
        Copyright © 2016 All Rights Reserved. Powered by CNDBA · 皖ICP备2022006297号-1·

        QQ交流群

        注册联系QQ