摘要: Springboot整合logback日志系统 ###1.创建logback-spring.xml文件 <?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="60 seconds"> <!-- 文件最大保存历史数量 --> <property n 阅读全文
posted @ 2021-08-13 17:46 Awsly 阅读(98) 评论(0) 推荐(0) 编辑
摘要: Springboot @Valid 参数校验 ##1. 常见实体类校验注解 @Null 只能是null @NotNull 不能为null 注意用在基本类型上无效,基本类型有默认初始值 @AssertFalse 必须为false @AssertTrue 必须是true 字符串/数组/集合检查:(字符串本身就是个数组) @Pattern(regex 阅读全文
posted @ 2021-08-13 16:57 Awsly 阅读(643) 评论(0) 推荐(0) 编辑