03 2022 档案
摘要:RequiredArgsConstructor @RequiredArgsConstructor(onConstructor = @__(@Autowired))
阅读全文
摘要:数据库右键--导入sql文件--选择忽略错误,点击确定
阅读全文
摘要:https://zhuanlan.zhihu.com/p/48269420 https://blog.csdn.net/yudiandemingzi/article/details/121521048 左开右闭”是指区间不包括左边的内容,但是涵盖右边的内容。 例如(2,3]是指大于2但是小于等于3的
阅读全文
摘要:先在键的后面按下光标(鼠标在后面按一下)然后再按住shift+鼠标在有的前面再按一下就可以了
阅读全文
摘要:https://blog.csdn.net/Pandafz1997/article/details/119898686 https://blog.csdn.net/qq_29229567/article/details/80773970 判断异常类型 (ex instanceof RuntimeEx
阅读全文
摘要:package com.yiautos.psf.order.util.myannotation; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.AfterReturning; import org.aspe
阅读全文
摘要:SpringUtil.getBean(OrderServiceImpl.class); ApplicationContextRegister.getBean(PROCESSOR_REPOSITORY.get(costType)
阅读全文
摘要:BEGIN: update psf_order set `status`=1 WHERE id='1379256482132643841'; SAVEPOINT s1; SELECT `status` FROM psf_order WHERE id='1379256482132643841'; up
阅读全文
摘要:如果不限制 page.setMaxLimit(-1L);
阅读全文
摘要:this.update(Wrappers.lambdaUpdate(Order.class).set(Order::getMarkImgUrl,fileImgUrl).eq(Order::getId,order.getId()));
阅读全文
摘要:like '${@com.yiautos.psf.order.utils.PsfShopCommonConstants@TRADE_NO_PREFIX}%' public final static String TRADE_NO_PREFIX = "JYX";
阅读全文
摘要:https://blog.csdn.net/beidaol/article/details/85061472
阅读全文
摘要:for (int from = 0, to = 0, size = orderList.size(); from < size; from = to) { to = Math.min(from + query.getBatchSize(), size); List<Order> pageList =
阅读全文
摘要:static class Food{ String id; String name; Food(String A,String B) { this.id=A; this.name=B; } public void setId(String id) {this.id=id;} } public sta
阅读全文
摘要:Comparator<RecentReceivingAccountVO> byTime= Comparator.comparing(RecentReceivingAccountVO::getCreateTime); Comparator<RecentReceivingAccountVO> byNam
阅读全文
摘要:// 结果数据 long gcing = Runtime.getRuntime().freeMemory(); orderList = pageOrder.getRecords(); long gced = Runtime.getRuntime().freeMemory(); // 64位打印24,
阅读全文