让 GitHub 像 VSCode 那样显示 在网址github后加上1s: 原网址:https://github.com/jbarlow83/OCRmyPDF 新网址:https://github1s.com/jbarlow83/OCRmyPDF 参考文档:https://www.cnblogs.com/syxy/p/14742177.htm 2024-05-03 工具 #Git
SpringBoot Validation 配置快速失败 import lombok.extern.slf4j.Slf4j; import org.hibernate.validator.HibernateValidator; import org.springframework.context.annotation.Bean; import org.sp 2023-10-23 后端开发 #Java#Spring#SpringBoot
MySQL SELECT INTO INSERT INTO 语句用于向一张表中插入新的行。(要求目标表必须存在) SELECT INTO 语句从一张表中选取数据插入到另一张表中。常用于创建表的备份复件或者用于对记录进行存档。(如果不存在目标表的话会自动创建) 2023-10-23 数据库 #MySQL
判断值是否在枚举类的值中 判断值是否在枚举类中 @Getter public enum PictureTypeEnum { HEAD_PORTRAIT(1, "头像"), ID_CARD_NO(2,"身份证"); PictureTypeEnum(Integer value, String me 2023-10-11 后端开发 #Java