参考:https://blog.csdn.net/qq_27093465/article/details/52180865 public enum Color { RED("红色", 1), GREEN("绿色", 2), BLANK("白色", 3), YELLO("黄色&qu…
方法一: 可以在apllication.property加入下面配置就可以 时间戳统一转换 spring.jackson.date-format=yyyy-MM-dd HH:mm:ss spring.jackson.time-zone=GMT+8 方法二: @JsonFormat(timezone = "GMT+8", patt…
如生僻字:𪅙 修改表字段编码为utf8mb4 由官方文档我们可以知道,mysql 支持的 utf8 编码最大字符长度为 3 字节,如果遇到 4 字节的宽字符就会有插入异常的问题。三个字节的 UTF-8 最大能编码的 Unicode 字符是 0xffff,也就是说 Unicode 中的基本多文种平面(BMP)。也就是说,任何不在基本多文本平面的 Un…
参考: https://baomidou.com/pages/6b03c5/ 方法一:全局配置 mybatis-plus: global-config: db-config: logic-delete-field: flag # 全局逻辑删除的实体字段名(since 3.3.0,配置后可以忽略不配置步骤2) logic-delete-value: …
可能的异常 mybatis-plus java.lang.NoClassDefFoundError: freemarker/template/Configuration mybatis-plus freemarker.template.Configuration mybatis Failed to determine a suitable driv…
Xi H2O CO2 益达TM Xi H2O CO2 益达TM
varchar(n),n表示什么? MySQL5.0.3之前varchar(n)这里的n表示字节数 MySQL5.0.3之后varchar(n)这里的n表示字符数,比如varchar(200),不管是英文还是中文都可以存放200个 参考:https://blog.csdn.net/zgdwxp/article/details/90675967 CH…
表字段编码不是Latin1不支持中文字符,因此我们需要修改编码格式 alter table Student change name name varchar(40) character set utf8;
参考:https://www.cnblogs.com/vmuu/p/15663273.html import javax.xml.bind.annotation.XmlElement; import java.io.*; import java.lang.annotation.Annotation; import java.lang.reflect…
Cannot invoke "*.mapper.*Mapper.insert(Object)" because "this.*Mapper" is null 一直报Mapper对象为空,是没有注入的原因 添加注解@Autowired即可 @Autowired private AuthorInfoMapper …