spring boot
宇智波_摸鱼
这个人非常懒的懒的什么都没有留下
展开
-
mysql解决存储微信表情emoji保存失败问题
问题分析 微信开发中带有emoji表情昵称的微信用户无法自动登录的问题 异常信息: Incorrect string value: '\xF0\x9F\x8D\x80' for column 'nickname' at row 1; 原因: emoji表情是用4个字节编码,mysql默认是默认varchar字段属于utf-8只能用存进3个字节编码的字符串内容 一:mysql版本5.7以下 1.1:使用base64转码后存入数据库, 1.2:过滤emoji表情(可能有些表情无法过滤...原创 2020-06-08 16:21:13 · 1030 阅读 · 0 评论 -
spring boot Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test at org.springframework.util.Assert.state(Assert.java:70) at org.springframework.boot.test.con原创 2017-11-04 15:13:24 · 23425 阅读 · 5 评论