Elasticsearch基本使用
介绍了Elasticsearch的基本使用,包括索引操作、查询操作和聚合操作等
JSR303校验
1. JSR303校验步骤1:使用校验注解在Java中提供了一系列的校验方式,它这些校验方式在“javax.validation.constraints”包中,提供了如@Email,@NotNull等注解。
在非空处理方式上提供了@NotNull,@Blank和@
(1)@NotNull
The annotated element must not be null. Accepts any type.注解元素禁止为null,能够接收任何类型
(2)@NotEmpty
the annotated element must not be null nor empty.
该注解修饰的字段不能为null或””
Supported types are:
支持以下几种类型
CharSequence (length of character sequence is evaluated)
字符序列(字符序列长度的计算)
Collection (collection size is evaluated)集合长度的计算
Map (map size is evaluated)map长度的计算
Array ( ...
Java8stream的详细用法
介绍了java8 中stream的用法
mybatis-plus逻辑删除
mybatis-plus项目中的逻辑删除
文件上传及对象存储(oss)
介绍如何利用阿里云云服务进行对象存储
spring中跨域问题
解决Spring项目中的跨域问题
服务网关Gateway
介绍服务网管Gateway的使用
nacos
介绍springcloud-alibaba中nacos的使用
springboot整合mybatis-plus
springboot开发整合mubatis-plus
二叉树的中序遍历
二叉树中序遍历的若干方法