摘要: PART1 考试情况介绍1.考试时间:3 小时2.考试形式:满分 100分,60 分及格3.考试题型:一个案例,包括两个大题,每题 50分(全是主观题★★*)4.考试时间:2013.11.16.14:30-17:305.知识点的考核目标:A.解决问题能力:40% B.决策能力:40%C.人际交往能力 阅读全文
posted @ 2024-11-26 18:49 皇问天 阅读(4) 评论(0) 推荐(0) 编辑
摘要: //顺序Collections.sort(value, Comparator.comparing(PpsProblemPieces::getCreateTime));//倒序Collections.sort(value, Comparator.comparing(PpsProblemPieces:: 阅读全文
posted @ 2024-10-17 20:47 皇问天 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/MennPpSTkWeWS0ABqBHRvQ 阅读全文
posted @ 2024-08-30 09:31 皇问天 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/_ietYo4fgWxKvOZ_D8cWCQ 阅读全文
posted @ 2024-08-28 09:10 皇问天 阅读(16) 评论(0) 推荐(0) 编辑
摘要: https://books.halfrost.com/leetcode/ChapterOne/Algorithm/ 阅读全文
posted @ 2024-08-28 09:08 皇问天 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、Springboot2.0以后默认的数据库连接池是哪个? Springboot2.0以后默认的数据库连接池是哪个 Spring Boot 2.0 后默认的数据库连接池是 HikariCP。 HikariCP 是一个高性能的数据库连接池,它的性能远远超过其他传统的数据库连接池,如 C3P0、DBC 阅读全文
posted @ 2024-07-17 09:46 皇问天 阅读(13) 评论(0) 推荐(0) 编辑
摘要: import java.io.*;import java.util.ArrayList;import java.util.HashMap;import java.util.List;import java.util.Map;import java.util.regex.Matcher;import 阅读全文
posted @ 2024-04-29 17:32 皇问天 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1引言 在实际的应用中,我们经常需要调用第三方API来获取数据或执行某些操作。然而,由于网络不稳定、第三方服务异常等原因,API调用可能会失败。为了提高系统的稳定性和可靠性,我们通常会考虑实现重试机制。 本文将深入探讨如何在Spring Boot项目中优雅地重试调用第三方API,并结合代码示例,展示 阅读全文
posted @ 2024-02-28 10:46 皇问天 阅读(231) 评论(0) 推荐(0) 编辑
摘要: import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.net.HttpURLConnection;import java.net.URL; publi 阅读全文
posted @ 2023-12-21 16:08 皇问天 阅读(16) 评论(0) 推荐(0) 编辑
摘要: private List<FileUrlDto> buildFileUrlMethod(String fileUrl,String fileName){ List<String> files = new ArrayList<>(); List<String> fileNames = new Arra 阅读全文
posted @ 2023-12-21 16:05 皇问天 阅读(26) 评论(0) 推荐(0) 编辑