在Java中,常用的Validator验证注解包括:
1. @NotNull:验证对象是否为null;
2. @NotEmpty:验证字符串不为null且长度大于0;
3. @NotBlank:验证字符串不为null且去除首尾空格后长度大于0;
4. @Min(value):验证数字是否大于等于指定最小值;
5. @Max(value):验证数字是否小于等于指定最大值;
6. @DecimalMin(value):验证BigDecimal、BigInteger等数字类型是否大于等于指定值;
7. @DecimalMax(value):验证BigDecimal、BigInteger等数字类型是否小于等于指定值;
8. @Size(min =, max =):验证集合或数组元素个数是否在指定范围内;
9. @Email:验证字符串是否为有效的邮件地址格式;
10. @Pattern(regexp =):验证字符串是否符合指定的正则表达式。
此外,还有一些扩展注解,可以满足更具体的验证需求,比如@Valid,@AssertTrue,@AssertFalse等等。
- 环境配置
- window怎么配置java环境变量?
- Java基础语法
- Java中的数据类型
- Java中的JSONObject
- Java高级特性
- Maven
- jib-maven-plugin
- 什么是Spring Boot 的 parent pom?
- maven中各个生命周期的含义
- Spring Boot
- maven与spring boot 的关系
- 配置文件
- application-properties配置文件
- Spring Boot 的启动
- spring boot项目如何启动?
- 列举一下Spring Boot的启动过程
- SpringApplication.run方法
- Spring Boot 启动时有哪些接口?
- CommandLineRunner
- Spring Boot 的常用注解
- 系统注解
- 表格:系统注解
- @Override
- @Deprecated
- @SuppressWarnnings
- 使用在类名上的注解
- 表格:使用在类名上的注解
- @RestController
- @Controller
- @Service
- @Repository
- @Component
- @Configuration
- @Resource
- @Autowired
- @RequestMapping
- @PostMapping
- @GetMapping
- @Transactional
- @Qualifier
- 使用在方法上的注解
- 表格:使用在方法上的注解
- @RequestBody
- @PathVariable
- @Bean
- @ResponseBody
- @PreAuthorize
- 其他常用注解
- 表格:其他常用注解
- @EnableAutoConfiguration
- @SpringBootApplication
- @EnableScheduling
- @EnableAsync
- @ComponentScan
- @Aspec
- @ControllerAdvice
- @ExceptionHandler
- @Value
- @ConfigurationProperties
- @EnableConfigurationProperties
- @MapperScan
- Validator验证的常用注解
- spring IoC容器
- Spring IoC容器依赖注入实现方式
- MyBatis
- paginationInterceptor
- @TableName
- @TableId
- @Param
- UrlBasedCorsConfigurationSource
- Lombok
- @Data
- @Slf4j
- @EqualsAndHashCode
- @Accessors
- 支付系统
- 1. 初始化mysql数据库流程
- 2. 初始化redis数据库的流程
- 3. 初始化rabbitmq服务