上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 48 下一页
  2023年9月25日
摘要: Java接口签名和验签 import com.alibaba.fastjson.JSON; import org.apache.commons.lang3.StringUtils; import java.lang.reflect.Field; import java.util.*; public 阅读全文
posted @ 2023-09-25 22:52 oktokeep 阅读(867) 评论(0) 推荐(0) 编辑
摘要: Json输出List集合对象和map对象 JSON格式 //Json输出List集合对象 [{"属性1":["值1"],"属性2":"值2"}, {"属性3":["值3"],"属性4":"值4"}] import com.alibaba.fastjson.JSONObject; import jav 阅读全文
posted @ 2023-09-25 22:49 oktokeep 阅读(236) 评论(0) 推荐(0) 编辑
  2023年9月14日
摘要: 订单请求接口设计,避免timeout超时问题 下单解决 接上篇:外部系统对接下单幂等性校验逻辑及接口超时处理 https://www.cnblogs.com/oktokeep/p/17668039.html 1.第一步中间表数据 & 取消接口 两件事情分开,不要因为中间表缺失数据,而影响到取消的操作 阅读全文
posted @ 2023-09-14 23:21 oktokeep 阅读(69) 评论(1) 推荐(0) 编辑
摘要: 高德的API来查询行政区域查询 1.api接口文档地址 https://lbs.amap.com/api/webservice/guide/api/district GET https://restapi.amap.com/v3/config/district?keywords=贵阳&subdist 阅读全文
posted @ 2023-09-14 23:18 oktokeep 阅读(970) 评论(0) 推荐(0) 编辑
  2023年9月8日
摘要: Unknown initial character set index '255' received from server. Initial client character 解决方法 mysql连接数据库时报此错误: //String url = "jdbc:mysql://localhost: 阅读全文
posted @ 2023-09-08 18:43 oktokeep 阅读(260) 评论(0) 推荐(0) 编辑
摘要: AnnotationTransactionAttributeSource is only available on Java 1.5 and higher和windows同时安装jdk7和jdk8 出错原因: 因为spring core org.springframework.core.JdkVer 阅读全文
posted @ 2023-09-08 18:42 oktokeep 阅读(110) 评论(1) 推荐(0) 编辑
摘要: Eclipse build js卡死 Eclipse 编译太卡,耗时太长解决 问题描述:编译停止在js编译中,原来是js的问题 1、首选项-javaScript-Validator-Errors/Warning 里面的 Enable javaScript semantic valudation已经关 阅读全文
posted @ 2023-09-08 18:41 oktokeep 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 报错解决 :Resolved [org.springframework.web.bind.MissingServletRequestParameterException 解决方法:RequestParam注解加上required = false属性。这样请求参数可以传null对象。 如果没有加上re 阅读全文
posted @ 2023-09-08 18:40 oktokeep 阅读(1608) 评论(0) 推荐(0) 编辑
摘要: ConcurrentModificationException异常原因和解决方法 public static void main(String[] args) { List<Integer> list = new ArrayList<Integer>(){ { add(1); add(2); add 阅读全文
posted @ 2023-09-08 18:39 oktokeep 阅读(820) 评论(0) 推荐(0) 编辑
摘要: Java泛型对象在http请求和响应对象中的封装 public class MySystemBaseResVo<T> { //注意:类的后面需要带上<T>,否则数据无法封装 private String err_no; private String err_tips; private T data; 阅读全文
posted @ 2023-09-08 18:38 oktokeep 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 48 下一页