一个请求开一个线程是错误的
tomcat7默认是BIO线程池思想 200核心线程 tomcat8默认是NIO多路复用
断言 主要使用在代码开发和测试时期,用于对某些关键数据的判断,如果这个关键数据不是你程序所预期的数据,程序就提出警告或退出 -ea -da无效
Assert.notNull(roleId,"角色id不存在");
try catch 代码块,以优雅的 Assert(断言) 方式来校验业务的异常情况 RestControllerAdvice+ExceptionHandler处理抛出异常 可自定义
Optional 是一个对象容器 提示用户要注意该对象有可能为null 简化if else代码
Optional.of 为空抛出异常 Optional.ofNullable为空返回空的实例 想当与获取了流操作
String... fieldNames 传入参数不确定!!
类型后跟…,表示此处接受的参数为0到多个Object类型的对象,或者是一个Object[]
for(int i = 0; i < paramKeyArray.length; i ++) {}
设计模式 接口模板
多个接口 选择实现功能 解耦!!!!
公共提出到interface 然后实现公共的interface 特殊的在实现类中实现
controller interface模板接口化!! 类似的相同页面功能需求只适合需求变动小的小项目!!
子类不能继承父类的私有属性 this.指向父类
泛型设计是一种约束 使用公共字段用extends!!
反射 Class newInstance invoke getFiled getMethod getAnnotation获取类上和属性filed上注解
自定义注解 Aspect切面切Controller Retention作用范围 Target Documented Inherited继承
aop Aspect Pointcut切点 @Around before
stream中间操作符和终止操作符
map元素转变相当于 flatmap limit distint filter sorted skip peek编辑修改 e->
collect count forEach
<T,V> 声明变量 返回值
public class BeanCopyUtil<T,V> {
public static <T,V> IPage<V> copyIpage(IPage<T> page1,IPage<V> page2,Class<V> vClass){
BeanUtils.copyProperties(page1,page2);
List<V> listNew = new ArrayList<>();
copyList(page1.getRecords(),listNew,vClass);
page2.setRecords(listNew);
return page2;
}
public static <T,V> List<V> copyList(List<T> list1,List<V> list2,Class<V> vClass){
list1.stream().forEach(x->{
try {
V v = vClass.newInstance();
BeanUtils.copyProperties(x,v);
list2.add(v);
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
});
return list2;
}
public static <T,V> V copyEntity(T en1 , V en2){
BeanUtils.copyProperties(en1,en2);
return en2;
}
//想要在方法中操作公共的字段
public static <T extends GeneratedRoleField> QueryWrapper<T> getRoleQueryWrapper(){
QueryWrapper<T> queryWrapper = new QueryWrapper<>();
queryWrapper.lambda().eq(GeneratedRoleField::getRoleId,
ThreadLocalUtil.getInstance().getUserInfo().getRoleId());
return queryWrapper;
}
}
WebMvcConfigurer HandlerInterceptor token拦截器
|