1 2 3 4 5 ··· 11 下一页

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 白嫖老郭 阅读(3) 评论(0) 推荐(0) 编辑

2024年7月10日

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

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

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

2024年6月17日

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

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

posted @ 2024-06-17 20:27 白嫖老郭 阅读(8) 评论(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 白嫖老郭 阅读(4) 评论(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 白嫖老郭 阅读(6) 评论(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 白嫖老郭 阅读(33) 评论(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 白嫖老郭 阅读(12) 评论(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 白嫖老郭 阅读(347) 评论(0) 推荐(0) 编辑

2024年5月10日

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

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

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

2024年5月7日

SpringBoot+Thymeleaf渲染下拉框异常解决

摘要: 常规方式 <select class="form-control" name="operationType" th:field="${itemTemp.operationType}" style="width:80%" th:disabled="${readonly}"> <option value 阅读全文

posted @ 2024-05-07 15:32 白嫖老郭 阅读(13) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 11 下一页

导航