Preface This article mainly introduces the solution to the MySQL storage table error: java.sql.SQLException: Incorrect string value: '\xF0\x9F\x92\xA9\x0D\x0A...', and shares it for your reference. Let's take a look at the detailed introduction: This project is based on Spring MVC + MySQL + Druid DataSource. An error message appears when inserting Emoji characters into the database:
Ordinary characters take up to 3 bytes, which is enough to use utf8. Emoji characters take up 4 bytes and need to be stored using the utf8mb4 character set. The solution requires changes in two places: the MySQL server and the connecting client. MySQL Server I have previously introduced a tutorial on how to set up MySQL to store emoji characters. If you want to learn more, you can take a look at it first. On the server side, change the fields that need to store emoji characters to use the utf8mb4 character set: ALTER TABLE mytable MODIFY COLUMN myfiled varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; Client The client needs to set the character set of the connection to utf8mb4. The setup is as follows: set names utf8mb4; The open source druid datasource from Alibaba is used. It has a property called connectionInitSqls, which is used to set the SQL executed when the physical connection is initialized. So we can use connectionInitSqls to initialize the connection. Spring is configured as follows: <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <!-- Basic attributes url, user, password --> <property name="url" value="jdbc:mysql://localhost:3888/majing?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull" /> <property name="username" value="dbusername"/> <property name="password" value="dbpasswod"/> <property name="connectionInitSqls" value="set names utf8mb4;" /> <!-- Other configurations --> </bean> Other database connection pools such as dbcp2 and HikariCP have the connectionInitSqls attribute. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: How to start/stop Tomcat server in Java
>>: JS asynchronous code unit testing magic Promise
Copy code The code is as follows: <!DOCTYPE ht...
1. What is Continuous Delivery The software produ...
Table of contents 1 Introduction to the new opera...
Background: Make a little progress every day, acc...
When position is absolute, the percentage of its ...
This article records the detailed tutorial of MyS...
1. The use of or syntax in MySQL, and the points ...
What is the purpose of this sentence? Copy code Th...
Introduction: Nginx (pronounced the same as engin...
Table of contents 1. Conventional ideas for time ...
The <link> tag defines the relationship bet...
Preface What is state We all say that React is a ...
What is SQL? SQL is a language used to operate da...
1. Overall steps At the beginning, we introduced ...
Customize a demo command The syntax of Vue custom...