-
default关键字
应用在interfact中,可以减少实现类的代码量
例如:@Nullable default Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { return bean; }
-
@Nullable 和 @Nonable
可以传入空值
不可以传入空值 -
Assert.notNull(action,“Callback object must be not null”)
if(a ==null){
}
- DDD 领域驱动设计 domain driven design
a mechanism for encapsulating storage, retrieval, and search behavior which emulates a collection of objects - 注解 @Component @Repository
- profile 配置文件
- 泛型 geneticTypeResolve spring泛型的处理 resolveType java 反射
- 函数接口 FuncationalInterface—>applicationListener。函数接口特点:有且只有一个方法,不包含object的hash()和equals()
webFlux—mono类和Flux类
webflux与springMvc的区别,是 webflux是异步非阻塞,springMvc是同步阻塞式I/O模式,一个请求一个线程