mysql blob 乱码_Mybatis中mysql blob类型乱码解决
时间: 2023-07-19 22:39:33 浏览: 259
Mybatis中mysql blob类型乱码通常是因为编码不匹配导致的。解决方法如下:
1. 修改数据库表的编码为utf8mb4
```
ALTER TABLE table_name CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
```
2. 在Mybatis配置文件中添加编码配置
```
<configuration>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false&serverTimezone=UTC"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</dataSource>
</environment>
</environments>
<mappers>
...
</mappers>
</configuration>
```
其中,`useUnicode=true`表示使用Unicode编码,`characterEncoding=utf-8`表示使用UTF-8编码。
3. 在Mapper.xml文件中设置参数类型
```
<insert id="insertBlob" parameterType="map">
<selectKey keyProperty="id" resultType="int" order="AFTER">
SELECT LAST_INSERT_ID()
</selectKey>
INSERT INTO blob_table (id, content) VALUES (#{id}, #{content, jdbcType=BLOB})
</insert>
```
其中,`jdbcType=BLOB`表示使用BLOB类型。
通过以上三个步骤,可以解决Mybatis中mysql blob类型乱码的问题。
阅读全文