上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: Spring事务传播特性: 挂起的时候不影响REQUIRED: 使用当前的事务,如果当前没有事务,则自己新建一个事务,子方法是必须运行在一个事务中的, 如果当前存在事务,则加入这个事务,成为一个整体 向下传递,上层没有就新增,有就加入 SUPPORTS: 如果当前有事务,就以事务执行,如果没有事务, 阅读全文
posted @ 2021-07-24 20:00 泡沫幻影 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1.正常先找一篇博客参考学习 转载: https://blog.csdn.net/tsundere_x/article/details/104263100 转载: https://blog.csdn.net/weixin_42641465/article/details/104846969 这里有个 阅读全文
posted @ 2021-07-21 14:35 泡沫幻影 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 转载: https://www.it1352.com/1058955.html 数组的话可以直接用push方法: A.push(B); 对象: ES5: var A = {a:1,b:2}; var B = {c:3,d:4}; for(var key in B ){ if(B.hasOwnProp 阅读全文
posted @ 2021-05-25 11:38 泡沫幻影 阅读(1064) 评论(0) 推荐(0) 编辑
摘要: 微信公众号发送消息错误码: 48001: 发送消息权限没有开启,获取access_token错误40164: 需要设置IP白名单40003: openId不在此公众号下 阅读全文
posted @ 2021-03-09 10:28 泡沫幻影 阅读(147) 评论(0) 推荐(0) 编辑
摘要: easypoi 导出数据为excel报错信息: The maximum number of cell styles was exceeded. You can define up to 64000styles in a .xlsx workbook 解决方案自定义样式: 重复利用已有样式. pack 阅读全文
posted @ 2020-12-24 09:44 泡沫幻影 阅读(4331) 评论(0) 推荐(1) 编辑
摘要: 转载: https://www.cnblogs.com/ccav1/p/12149889.html 记得备份之间的数据库,不然很难受! 1.如果之前有安装先停止服务 然后用管理员访问cmd命令窗口执行移除服务 mysqld -remove 2.把下载好的mysql.zip压缩包减压至指定位置: D: 阅读全文
posted @ 2020-10-24 17:32 泡沫幻影 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ApacheHttpClient类中init初始化方法报错 IllegalMonitorStateException 具体是 this.latch.wait();执行wait()报错 public void init(final HttpClientConfig config) throws Cli 阅读全文
posted @ 2020-09-04 01:39 泡沫幻影 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 转载: https://blog.csdn.net/PLATINUM_II/article/details/80137272 select interval (TIMESTAMPDIFF(YEAR, dm.birthday, now()), 0, 18, 26, 51, 70) code, coun 阅读全文
posted @ 2020-08-05 14:18 泡沫幻影 阅读(1306) 评论(0) 推荐(0) 编辑
摘要: IDEA Git 提交 然后pull 接下来解决冲突的时候IDEA闪退. 导致其他同事的文件pull到了我本地,但是不是提交状态,我以为rollback会同步git远程仓库其实没有,只是回滚到了我自己的最新版本,把同事的代码全部删除了, 然后我再commit,继续pull其实还是本地最新的,接着pu 阅读全文
posted @ 2020-07-30 10:55 泡沫幻影 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 转载: https://blog.csdn.net/TrayLei/article/details/84579212 <if test="guardSpecialPojo.sfzy !=null and guardSpecialPojo.sfzy != '' "> <![CDATA[ AND a.S 阅读全文
posted @ 2020-06-29 16:35 泡沫幻影 阅读(631) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页