/*** 给in条件加上''*/ public static String setPoint(String list) { return Arrays.asList(list.replaceAll(" ", "").replac...
Category : Java8
Java8常用代码
list.parallelStream().map(p -> {p.setAdmin("123"); return p; }).collect(Collectors.toList());exBlack.parallelStream().map(p ...
Java8快速ObjList转StrList
List<String> stringList = objectList.stream() .map(Object::toString) .collect(Collectors.toList());
Java自定义错误
@ControllerAdvicepublic class CustomHandle {@ResponseBody@ExceptionHandler(MethodArgumentNotValidException.class)public String methodArgu...