11 2022 档案

摘要:1 package com.-.it.regioc.bean.config.prefer; 2 3 import org.jetbrains.annotations.NotNull; 4 import lombok.AllArgsConstructor; 5 import lombok.Data; 阅读全文
posted @ 2022-11-22 20:09 MING5135 阅读(27) 评论(0) 推荐(0) 编辑
摘要:1 //获取当天0点时间 2 public static String getDate1(){ 3 4 Calendar cal = Calendar.getInstance(); 5 cal.set(Calendar.HOUR_OF_DAY, 0);//控制时 6 cal.set(Calendar 阅读全文
posted @ 2022-11-21 20:10 MING5135 阅读(100) 评论(0) 推荐(0) 编辑
摘要:多线程 https://www.cnblogs.com/empty-me/p/15664024.html Java多线程:向线程传递参数的三种方法 https://blog.csdn.net/m0_37125796/article/details/79599523 java并发编程Future类详解 阅读全文
posted @ 2022-11-21 20:04 MING5135 阅读(15) 评论(0) 推荐(0) 编辑
摘要:buildTasks & submitTask // 创建查询任务 List<ProbeQueryTask> tasks = ReportQueryHelper.buildTasks(apiParams, headerMap); List<JSONObject> results = TaskThre 阅读全文
posted @ 2022-11-18 20:55 MING5135 阅读(15) 评论(0) 推荐(0) 编辑
摘要:流程 业务逻辑: 不同的请求 -> 入参, 处理 入参: 主页面页面加载自动发一批不同的异步请求 从前端进来, 用户文本输入,点击按钮 点击不同自身含有入参的按钮 父节点中的某些参数 前后端都通过变量把数据临时存储在ram内存中 环境搭建 暴露接口,代码架构搭建 查库与发请求 文档与三方联调确认并编 阅读全文
posted @ 2022-11-16 22:08 MING5135 阅读(17) 评论(0) 推荐(0) 编辑
摘要:vue保存数据 vue存储数据的几种方法(Vuex与本地存储) https://blog.csdn.net/DW14687/article/details/114657204 阅读全文
posted @ 2022-11-16 21:06 MING5135 阅读(13) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc.utils; 2 3 import com.alibaba.fastjson.JSON; 4 import com.alibaba.fastjson.JSONObject; 5 import com.-.it.regioc.bean.config. 阅读全文
posted @ 2022-11-14 23:13 MING5135 阅读(16) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc.utils; 2 3 import com.-.it.regioc.bean.config.HttpConfig; 4 import okhttp3.*; 5 import org.apache.commons.lang3.StringUtils; 阅读全文
posted @ 2022-11-14 23:11 MING5135 阅读(15) 评论(0) 推荐(0) 编辑
摘要:DBeaver安装与使用教程(超详细安装与使用教程),好用免费的数据库管理工具 https://blog.csdn.net/weixin_48053866/article/details/125815498 阅读全文
posted @ 2022-11-12 11:06 MING5135 阅读(132) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc.bean.result; 2 3 import lombok.Data; 4 import org.apache.http.HttpStatus; 5 import java.io.Serializable; 6 7 /** 8 * 响应结果 9 阅读全文
posted @ 2022-11-12 03:11 MING5135 阅读(186) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc.bean.result; 2 3 import com.fasterxml.jackson.annotation.JsonIgnoreProperties; 4 import lombok.Getter; 5 import org.apache.h 阅读全文
posted @ 2022-11-12 03:10 MING5135 阅读(33) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc.controller; 2 3 import org.apache.commons.lang3.StringUtils; 4 import org.springframework.beans.factory.annotation.Autowired 阅读全文
posted @ 2022-11-12 03:08 MING5135 阅读(43) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc.controller; 2 3 import org.springframework.http.MediaType; 4 import org.springframework.web.bind.annotation.PostMapping; 5 i 阅读全文
posted @ 2022-11-12 03:07 MING5135 阅读(45) 评论(0) 推荐(0) 编辑
摘要:@Slf4j是啥,它是干啥的 https://blog.csdn.net/weixin_41291538/article/details/100694346 @JSONField(name = "WAREHOUSE_CATEGORY_DESC_CN") private String warehous 阅读全文
posted @ 2022-11-10 20:49 MING5135 阅读(7) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc.container; 2 3 import cn.hutool.core.collection.CollectionUtil; 4 import com.huawei.it.regioc.bean.apiconfig.ApiTemplate; 5 阅读全文
posted @ 2022-11-10 20:47 MING5135 阅读(19) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc.bean.apiconfig; 2 3 import lombok.Data; 4 5 /** 6 * api配置模板 7 */ 8 @Data 9 public class ApiTemplate { 10 /** 11 * api名称 12 * 阅读全文
posted @ 2022-11-10 20:45 MING5135 阅读(20) 评论(0) 推荐(0) 编辑
摘要:1 package com.-.it.regioc; 2 3 import com.huawei.it.regioc.config.ConfigurationFactory; 4 import org.mybatis.spring.annotation.MapperScan; 5 import or 阅读全文
posted @ 2022-11-10 20:44 MING5135 阅读(21) 评论(0) 推荐(0) 编辑
摘要:1 api: 2 apiList: 3 - name: "超期发未收" 4 id: overdue_not_received 5 url: https://apigw.huawei.com/api/data-subject/app_000000035085/D103024 6 template: " 阅读全文
posted @ 2022-11-10 20:41 MING5135 阅读(22) 评论(0) 推荐(0) 编辑
摘要:1 import org.junit.Assert; 2 import org.junit.Before; 3 import org.junit.Test; 4 import org.junit.runner.RunWith; 5 import org.mockito.InjectMocks; 6 阅读全文
posted @ 2022-11-09 19:24 MING5135 阅读(23) 评论(0) 推荐(0) 编辑
摘要:1 import org.junit.Assert; 2 import org.junit.Before; 3 import org.junit.Test; 4 import org.junit.runner.RunWith; 5 import org.mockito.InjectMocks; 6 阅读全文
posted @ 2022-11-09 19:22 MING5135 阅读(15) 评论(0) 推荐(0) 编辑
摘要:1 import org.apache.commons.io.FileUtils; 2 import org.junit.Assert; 3 import org.junit.Before; 4 import org.junit.BeforeClass; 5 import org.junit.Tes 阅读全文
posted @ 2022-11-09 19:21 MING5135 阅读(22) 评论(0) 推荐(0) 编辑
摘要:jsp/servlet基础知识 https://blog.csdn.net/weixin_46101839/article/details/106243392 jsp与servlet https://blog.csdn.net/m0_59079129/article/details/11793497 阅读全文
posted @ 2022-11-08 21:47 MING5135 阅读(21) 评论(0) 推荐(0) 编辑
摘要:PowerMock 教程(配合 Jacoco) https://blog.csdn.net/weixin_59606804/article/details/122601778 java后端用mockito做单元测试,一直报错空指针问题 https://blog.csdn.net/m0_4627130 阅读全文
posted @ 2022-11-08 21:43 MING5135 阅读(129) 评论(0) 推荐(0) 编辑
摘要:1 import org.apache.commons.io.FileUtils; 2 import org.junit.Assert; 3 import org.junit.Before; 4 import org.junit.BeforeClass; 5 import org.junit.Tes 阅读全文
posted @ 2022-11-08 20:58 MING5135 阅读(28) 评论(0) 推荐(0) 编辑
摘要:1 import com.alibaba.fastjson.JSONArray; 2 import com.alibaba.fastjson.JSONObject; 3 import lombok.extern.slf4j.Slf4j; 4 import org.apache.commons.lan 阅读全文
posted @ 2022-11-08 20:56 MING5135 阅读(17) 评论(0) 推荐(0) 编辑
摘要:全系统数据流程时序图 阅读全文
posted @ 2022-11-05 11:10 MING5135 阅读(10) 评论(0) 推荐(0) 编辑
摘要:支持请求体注释 阅读全文
posted @ 2022-11-05 11:04 MING5135 阅读(69) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示