会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
jihite
不害怕 不着急 不要脸
博客园
新随笔
联系
订阅
管理
2025年8月26日
postgresql异常监控语句
摘要: 1.使用查询统计空闲事务及其 SQL SELECT pid, usename, client_addr, application_name, state, query, now() - query_start AS duration, pg_blocking_pids(pid) AS blockin
阅读全文
posted @ 2025-08-26 11:05 jihite
阅读(3)
评论(0)
推荐(0)
2024年9月27日
QGIS 操作
摘要: qgis 两个shp 文件 合并 去重,导出新的shp qgis 删除与另一个图层相交的数据 qgis 导出shp
阅读全文
posted @ 2024-09-27 20:24 jihite
阅读(65)
评论(0)
推荐(0)
2024年6月5日
java由于越界导致的报错
摘要: 问题 两种计算时间戳的结果不一样。 int days = 30; Instant now = Instant.now(); long timestamp_cur = now.toEpochMilli(); long nowPre = timestamp_cur - 1000 * 60 * 60 *
阅读全文
posted @ 2024-06-05 21:25 jihite
阅读(17)
评论(0)
推荐(0)
2024年5月19日
知识系统总结
摘要: 设计模式:https://blog.csdn.net/mrluo735/article/details/131600083
阅读全文
posted @ 2024-05-19 16:53 jihite
阅读(15)
评论(0)
推荐(0)
2023年12月1日
postgis常用操作
摘要: https://www.jianshu.com/p/5526d24f04fc
阅读全文
posted @ 2023-12-01 15:23 jihite
阅读(19)
评论(0)
推荐(0)
2023年10月23日
Spring Boot 之spring.factories
摘要: https://www.jianshu.com/p/d7c9b3e68f9a
阅读全文
posted @ 2023-10-23 14:08 jihite
阅读(15)
评论(0)
推荐(0)
2023年10月15日
Java 数组与List转换
摘要: 示例 @Test void str2arr() { String ids = "1,2,3,4,5,6"; //字符串 --> String数组 String[] arrayStr = ids.split(","); System.out.println(arrayStr); } @Test voi
阅读全文
posted @ 2023-10-15 20:36 jihite
阅读(18)
评论(0)
推荐(0)
2023年10月10日
java RestTemplate 发送post请求
摘要: RestTemplate简介 RestTemplate是执行HTTP请求的同步阻塞式的客户端,它在HTTP客户端库(如JDK HttpURLConnection,Apache HttpComponents,okHttp等)基础封装了更加简单易用的模板方法API。即RestTemplate是一个封装,
阅读全文
posted @ 2023-10-10 21:28 jihite
阅读(1097)
评论(0)
推荐(0)
2023年10月8日
java中的异步任务处理和Feature接口
摘要: 简介 Java并发包提供了一套框架,大大简化了执行异步任务所需要的开发。框架引入了“执行服务”的概念,封装了任务执行的细节,对任务提交者而言,他可以关注任务本身,如提交任务、获取结果、取消任务。而不用关注任务执行的细节。 基本接口 ①Runnable和Callable: 表示要执行的任务 ②Exce
阅读全文
posted @ 2023-10-08 20:17 jihite
阅读(1069)
评论(0)
推荐(0)
2023年10月7日
Spring中@Autowired和@Resource的区别
摘要: 说明 注解提供方: @Autowired这个由Spring提供;@Resource由JDK提供 区别 ①注解内参数不同 @Autowired只包含一个required参数,默认为true,表示注入的时候,该bean必须存在,否则就会注入失败;required=false,表示忽略当前要注入的bean
阅读全文
posted @ 2023-10-07 22:55 jihite
阅读(106)
评论(0)
推荐(0)
下一页
公告