上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 50 下一页
  2023年2月13日
摘要: gson TypeAdapter 和FieldNamingStrategy,SerializedName实现属性名称的设置别名 package com.example.core.mydemo.TypeAdapter; import com.google.gson.FieldNamingStrateg 阅读全文
posted @ 2023-02-13 13:21 oktokeep 阅读(61) 评论(1) 推荐(0) 编辑
摘要: gson属性disableHtmlEscaping对等于号的转义\u003d,注解符号Expose,SerializedName,Since和Until package com.example.core.mydemo; import com.alibaba.fastjson.JSON; import 阅读全文
posted @ 2023-02-13 13:21 oktokeep 阅读(412) 评论(0) 推荐(0) 编辑
  2023年2月9日
摘要: JSONObject.parseObject syntax error,expect START WITH { OR [,but actually START WITH error解析JSON出现异常(JSON返回结果) 请求的url格式错误:正确的:https://服务的IP:端口 /接口名称 ? 阅读全文
posted @ 2023-02-09 11:37 oktokeep 阅读(3788) 评论(0) 推荐(0) 编辑
  2023年2月3日
摘要: 父类与子类的继承测试方法 如果父类有值,直接输出父类属性,否则打印输出继承中子类的属性值 package com.example.core.mydemo.extendtest; import org.slf4j.Logger; import org.slf4j.LoggerFactory; publ 阅读全文
posted @ 2023-02-03 18:28 oktokeep 阅读(87) 评论(0) 推荐(0) 编辑
  2023年2月2日
摘要: mysql高级函数FIND_IN_SET,ENUM和SET,LOCATE,ELT,FIELD,INTERVAL,COUNT,CAST,NULLIF,ISNULL,IFNULL,IF,CONVERT,COALESCE # FIND_IN_SET FIND_IN_SET(needle,haystack) 阅读全文
posted @ 2023-02-02 17:04 oktokeep 阅读(180) 评论(0) 推荐(0) 编辑
  2023年1月31日
摘要: Apollo配置中心拉取,通过单独打包解决 Get config services failed from http://阿里云局域网访问IP:8080/services/config?appId=MyAppId&ip=192.168.145.1 Cause Could not complete g 阅读全文
posted @ 2023-01-31 17:40 oktokeep 阅读(2042) 评论(1) 推荐(0) 编辑
摘要: 消息队列及java for循环异常捕捉处理 1.定时任务查询需要的数据,减少处理的时间,通过消息队列的方式发送出来。2.接收端接收到数据,然后查询相关的es等,封装数据入库3.视图层直接查询入库的数据表,供后台管理界面显示 #DEMO CODE import org.springframework. 阅读全文
posted @ 2023-01-31 15:44 oktokeep 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 服务注册超时时间Read timed out报错解决 数据批量导出,大批量的数据,如根据结算日期按月来导出的业务场景。客户端报错提示:Caused by: java.net.SocketTimeoutException: Read timed out服务端报错提示:org.apache.catali 阅读全文
posted @ 2023-01-31 15:31 oktokeep 阅读(1052) 评论(3) 推荐(0) 编辑
  2022年12月23日
摘要: java switch语法 switch(type){ case "aaa": break; case "bbb": break; case "ccc": break; case "ddd": break; default: break; } 阅读全文
posted @ 2022-12-23 14:43 oktokeep 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 使用ScheduledExecutorService代替下Timer 1.scheduledExecutorService类方法scheduleAtFixedRate,ScheduleWithFixedDelay区别比较 1.1.ScheduleAtFixedRate 两次任务之间的间隔时间,取决于 阅读全文
posted @ 2022-12-23 14:42 oktokeep 阅读(739) 评论(4) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 50 下一页