摘要: 1.mysql执行流程 https://jishuin.proginn.com/p/763bfbd6e703 mysql explain 详解 https://www.cnblogs.com/tufujie/p/9413852.html mysql 小表驱动大表 https://blog.csdn. 阅读全文
posted @ 2022-02-15 23:09 yizw 阅读(76) 评论(0) 推荐(0) 编辑
摘要: select a.trx_id 事务id ,a.trx_mysql_thread_id 事务线程id,a.trx_query 事务sql from INFORMATION_SCHEMA.INNODB_LOCKS b,INFORMATION_SCHEMA.innodb_trx a where b.lo 阅读全文
posted @ 2021-08-12 14:14 yizw 阅读(428) 评论(0) 推荐(0) 编辑
摘要: JQE11SV0BR-eyJsaWNlbnNlSWQiOiJKUUUxMVNWMEJSIiwibGljZW5zZWVOYW1lIjoicGlnNiIsImFzc2lnbmVlTmFtZSI6IiIsImFzc2lnbmVlRW1haWwiOiIiLCJsaWNlbnNlUmVzdHJpY3Rpb24 阅读全文
posted @ 2021-04-25 09:28 yizw 阅读(279) 评论(0) 推荐(0) 编辑
摘要: /** * 推送文件 * @param uploadUrl 推送url * @param bbyte 文件字节数组 * @param fileName 文件名 * @param parmas post请求的其他参数 * @return */ public static String uploadFi 阅读全文
posted @ 2021-02-27 16:23 yizw 阅读(411) 评论(0) 推荐(0) 编辑
摘要: private static final Logger logger = LoggerFactory.getLogger(CmdUtil.class);/** * 杀死进程 * taskkill 参数列表: * /S system 指定要连接到的远程系统。 * /U [domain\]user 指定 阅读全文
posted @ 2020-09-15 15:14 yizw 阅读(1688) 评论(0) 推荐(0) 编辑
摘要: /** * 发送post请求 * @param urlStr * @param param * @return */ public static String doPostReq(String urlStr,String param){ String result = ""; BufferedRea 阅读全文
posted @ 2020-09-15 15:10 yizw 阅读(2593) 评论(1) 推荐(0) 编辑
摘要: 使用"apache.commons.httpclient" 添加依赖 <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.0</versio 阅读全文
posted @ 2020-09-15 15:04 yizw 阅读(2130) 评论(0) 推荐(0) 编辑
摘要: 在测试过程中,最开始使用字节流获取body内容,获取失败,亲测字符流可以获取到body内容;以下为代码内容:/** * 通过字符串读取的方式获取请求的body内容 * @param request * @return * @throws Exception */private JSONObject 阅读全文
posted @ 2020-07-03 10:33 yizw 阅读(4213) 评论(0) 推荐(0) 编辑
摘要: File >PropertiesTerminal >Encoding >utf-8 阅读全文
posted @ 2020-06-29 11:12 yizw 阅读(512) 评论(0) 推荐(0) 编辑
摘要: @Autowired @Qualifier("org.springframework.security.authenticationManager") protected AuthenticationManager authenticationManager; @RequestMapping(val 阅读全文
posted @ 2019-03-06 16:11 yizw 阅读(6165) 评论(0) 推荐(2) 编辑