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

2024年6月17日

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

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

posted @ 2024-06-17 20:27 白嫖老郭 阅读(87) 评论(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 白嫖老郭 阅读(7) 评论(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 白嫖老郭 阅读(33) 评论(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 白嫖老郭 阅读(362) 评论(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 白嫖老郭 阅读(88) 评论(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 白嫖老郭 阅读(1190) 评论(0) 推荐(0) 编辑

2024年5月10日

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

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

posted @ 2024-05-10 11:30 白嫖老郭 阅读(51) 评论(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 白嫖老郭 阅读(19) 评论(0) 推荐(0) 编辑

2024年3月6日

SpringBoot集成亚马逊的S3对象存储

摘要: 依赖导入:aws-java-sdk-s3 <dependencyManagement> <dependencies> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-bom</artifactId> <ve 阅读全文

posted @ 2024-03-06 14:45 白嫖老郭 阅读(900) 评论(0) 推荐(0) 编辑

2024年2月26日

JdbcTemplate 自定义返回的结果集字段和实体类映射

摘要: 废话不多:抄袭代码 package com.webank.wedatasphere.qualitis.handler; import com.webank.wedatasphere.qualitis.response.Grid; import com.webank.wedatasphere.qual 阅读全文

posted @ 2024-02-26 11:37 白嫖老郭 阅读(206) 评论(0) 推荐(0) 编辑

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

导航