本文主要是介绍Cause: java.sql.SQLException: Incorrect string value: ‘\xF0\x9F\xA4\xA3\xF0\x9F...‘SpringBoot,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
原因
解决方案
结果展示
SpringBoot插入/更新数据报错
Cause: java.sql.SQLException: Incorrect string value: ‘\xF0\x9F\xA4\xA3\xF0\x9F...‘
原因
字符集编码不匹配这个问题很常见啦,这边主要说的是utF8和utf8MB4之间的区别
Mysql在5.5.3之后增加了这个utf8mb4的编码,mb4就是most bytes 4的意思,专门用来兼容四字节的unicode。好在utf8mb4是utf8的超集,除了将编码改为utf8mb4外不需要做其他转换。utf8mb4占用的存储空间会略大一些。但是适应性会更强比如说它能够适应一些图形编码比如笑脸啊之类的
解决方案
既然咱都知道utf8MB4了,那就把数据库中需要含有特殊字符的编码设置为由utf8mb4虽然那样会增大一些空间,但是其兼容性会更加强!!!!
结果展示
OK修改之后我们发现我们可以插入一些颜文字了是不是特别牛逼呀想不到吧!!哈哈
import ShowAdminMessage from "@/mixs/ShowAdminMessage";
import showAdminMessage from "@/mixs/ShowAdminMessage";
export const crud_C = {
}
export const crud_D = {removeData(this_, arrIDs, ApiUrl) {this_.$confirm('此操作将永远删除条记录, 是否继续?', '提示', {confirmButtonText: '确定',cancelButtonText: '取消',type: 'warning',center: true}).then(() => {this_.$http.post(ApiUrl, arrIDs).then(resp => {if (resp.data.code === ShowAdminMessage.data().DELETE_OK) {showAdminMessage.methods.deleteOk(this_);this_.selectAll()}else {ShowAdminMessage.methods.deleteErr(this_);}})}).catch(() => {ShowAdminMessage.methods.deleteCancel(this_);});}
}
export const crud_R = {selectPage(this_, data, ApiUrl) {var _this = this_;this_.$http.post(ApiUrl, data).then((resp) => {_this.tableData = resp.data.data.pageDataList;_this.totalCount = resp.data.data.total;})},selectAll(this_, ApiUrl) {var _this = this_;this_.$http.get(ApiUrl).then(( resp) => {_this.tableData = resp.data.data;})},selectAllBySearchData(this_, data,ApiUrl) {var _this = this_;this_.$http.post(ApiUrl,data).then(( resp) => {_this.tableData = resp.data.data;})}
}export const crud_U = {updateData(this_, data, ApiUrl){let _this = this_;this_.$http.post(ApiUrl, data).then((resp) => {if (resp.data.code === ShowAdminMessage.data().UPDATE_OK) {showAdminMessage.methods.updateOk(this_);_this.selectAll()}else {ShowAdminMessage.methods.updateErr(this_);}})}
}
这篇关于Cause: java.sql.SQLException: Incorrect string value: ‘\xF0\x9F\xA4\xA3\xF0\x9F...‘SpringBoot的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!