摘要: 1、select * from 表 where code in (1,2,3); 2、update 表 set code = 4 where code = 1; 以上两步是平时可能用到的写法,先查询在修改(理解我意思就行)。 如果在高并发的情况下,这种情况更容易发生。 select语句使用非聚族索引 阅读全文
posted @ 2024-04-24 09:36 xxfcode 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 今天我不小心把正式库订单表数库都清空了,兄弟们!!!!!!!!!!!!我强迫自己冷静下来,百度搜索解决办法。希望大家别碰到这种事,太后怕了呜呜呜呜呜 我自己总结一下 1、查询某个时间点之前的数据(如果没数据库,多试几个时间点) select * from 表名 as of timestamp to_ 阅读全文
posted @ 2024-01-10 11:07 xxfcode 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 在tomcat停止后会报错:org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc Web应用程序 [ROOT] 注册了JDBC驱动程序 [com.alibaba.druid.proxy.DruidDriver],但在 阅读全文
posted @ 2023-08-22 11:02 xxfcode 阅读(268) 评论(0) 推荐(0) 编辑
摘要: import org.apache.poi.util.IOUtils; import org.springframework.boot.system.ApplicationHome; import org.springframework.core.io.ClassPathResource; impo 阅读全文
posted @ 2023-04-14 16:04 xxfcode 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 1. 下载文件 public void exportOpenFile(HttpServletResponse response) { // 通过工具类创建writer FileInputStream fis = null; ServletOutputStream sos = null; try { 阅读全文
posted @ 2023-04-14 15:55 xxfcode 阅读(46) 评论(0) 推荐(0) 编辑
摘要: //java8 可用String body = request.getReader().lines().collect(Collectors.joining()); request.getReader().lines()得到一个stream流 .collect(Collectors.joining( 阅读全文
posted @ 2023-02-22 16:22 xxfcode 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 今天前端传递一个json,我用@RequestBody怎么都接不到这个参数 一看请求头是application/x-www-form-urlencoded这个,这样的话,前端只能传递key-value形式的参数 但是前端application/x-www-form-urlencoded这个不能改! 阅读全文
posted @ 2022-10-18 16:32 xxfcode 阅读(34) 评论(0) 推荐(0) 编辑
摘要: FileInputStream fis = null; ServletOutputStream sos = null; try { //设置响应头 response.setContentType("application/vnd.openxmlformats-officedocument.sprea 阅读全文
posted @ 2022-10-18 11:15 xxfcode 阅读(379) 评论(0) 推荐(0) 编辑
摘要: //得到所有的菜单数据 List<FunctionJson> indoMenu = getList()// 得到所有的父菜单,顶级菜单 List<FunctionJson> parentIds = indoMenu.stream().filter(item -> item.getFid().equa 阅读全文
posted @ 2022-06-23 18:03 xxfcode 阅读(799) 评论(0) 推荐(0) 编辑
摘要: 先看代码 //NoticeUserInfo 这个对象有 name,phone,mail这个几个属性 //正常数据 (针对这个list去重)List<NoticeUserInfo> normalUserInfo = new ArrayList<>(); Set<NoticeUserInfo> play 阅读全文
posted @ 2022-06-17 10:43 xxfcode 阅读(134) 评论(0) 推荐(0) 编辑