上一页 1 2 3 4 5 6 ··· 12 下一页

2024年8月5日

Java基于XXLJOB的定时任务实现阶梯式通知方式

摘要: 数据库表设计 CREATE TABLE `tx_order_push_info` ( `order_no` varchar(64) DEFAULT NULL COMMENT '交易单号', `order_id` decimal(11,0) DEFAULT NULL COMMENT '交易单Id', 阅读全文

posted @ 2024-08-05 14:57 白嫖老郭 阅读(115) 评论(0) 推荐(0)

2024年7月16日

liunx服务器某个Java运行服务CPU占用率过高问题排查及修复

摘要: 进入服务器 用 top 命令查看 top top - 09:57:55 up 40 days, 22:05, 9 users, load average: 4.44, 4.03, 3.85 Tasks: 741 total, 3 running, 738 sleeping, 0 stopped, 0 阅读全文

posted @ 2024-07-16 15:02 白嫖老郭 阅读(368) 评论(0) 推荐(0)

2024年7月10日

系统对接要接入别的系统,需要自动登录进去

摘要: 设计一个中转页:自动JavaScript触发表单提交即可 /** * 跳转Datastudio * @param request request * @return ModelAndView */ @RequestMapping("gotoDatastudio") public ModelAndVi 阅读全文

posted @ 2024-07-10 18:30 白嫖老郭 阅读(60) 评论(0) 推荐(0)

2024年6月17日

IDEA 使用GIt提交代码时,如果不小心提交了不需要提交的内容,在本地仓库中,此时需要回滚版本,如何回滚

摘要: 选择上次提交的提交记录 选择上次提交的提交记录复制版本号 选中项目的Git重置器 填入刚复制的回滚版本号-点击Reset 这样一来就回滚回去了,本地提交就没了 阅读全文

posted @ 2024-06-17 20:27 白嫖老郭 阅读(190) 评论(0) 推荐(0)

2024年6月14日

本地项目上传到gitee

摘要: 前置条件:本地已经装好了GIt和GITEE有远程地址 检查本地装好了GIT:鼠标右键 检查准备好了远程:地址 本地项目拷贝到目录 D:\tmp2024-02-19\code 本地项目所在文件夹打开git窗口 打开GIT窗口之后以此执行 Administrator@DESKTOP-VM40J4T MI 阅读全文

posted @ 2024-06-14 16:46 白嫖老郭 阅读(64) 评论(0) 推荐(0)

2024年6月5日

SpringBoot+Nginx大文件传输

摘要: Nginx配置 # 公众端的附件上传 location /api/visitor/upload { # Pass altered request body to this location upload_pass /api/outerPortal/uploadAndSave; # Store fil 阅读全文

posted @ 2024-06-05 18:12 白嫖老郭 阅读(126) 评论(0) 推荐(0)

SpringBoot+微信支付-JSAPI{微信支付回调}

摘要: 引入微信支付SDK Maven: com.github.wechatpay-apiv3:wechatpay-java-core:0.2.12 Maven: com.github.wechatpay-apiv3:wechatpay-java:0.2.12 响应微信回调的封装 @Getter @Sett 阅读全文

posted @ 2024-06-05 10:22 白嫖老郭 阅读(1644) 评论(0) 推荐(0)

2024年6月4日

SpringBoot+微信支付-JSAPI

摘要: 引入微信支付SDK Maven: com.github.wechatpay-apiv3:wechatpay-java-core:0.2.12 Maven: com.github.wechatpay-apiv3:wechatpay-java:0.2.12 代码示例 package xxxx.cashi 阅读全文

posted @ 2024-06-04 20:28 白嫖老郭 阅读(303) 评论(0) 推荐(0)

2024年5月14日

arthas定位接口的耗时排查问题

摘要: 下载Arthas的jar包 https://arthas.aliyun.com/ 上传jar包到你的服务器启动 启动 arthas 在命令行下面执行(使用和目标进程一致的用户启动,否则可能 attach 失败): curl -O https://arthas.aliyun.com/arthas-bo 阅读全文

posted @ 2024-05-14 16:13 白嫖老郭 阅读(1890) 评论(0) 推荐(0)

2024年5月10日

SpringBoot+使用过滤器链执行风控决策

摘要: 风控流程 下单前进行风控校验 // 1.begin 风控处理 前置处理{黑白名单校验} RiskControlRuleEnum controlRuleEnum = riskControlHandlerService.preHandle(mappingObj.getMerchantGoodsType( 阅读全文

posted @ 2024-05-10 11:30 白嫖老郭 阅读(123) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 12 下一页

导航