摘要: 文档 : pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=23_1 阅读全文
posted @ 2024-11-01 10:54 lshan 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 版本: springboot2.3.12 + ehcache3.x + app + @EnableCaching application.properties + spring.cache.type=JCACHE 依赖: <!-- 缓存 --> <dependency> <groupId>org.s 阅读全文
posted @ 2024-10-24 18:27 lshan 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 请看:https://www.jianshu.com/p/d94b9495f7f9 ExtMail的优势与特点: 开源、免费,符合中国人习惯,使用不受限制 拥有自主著作权、产权,用户不必担心版权问题 安装简便,友善的全Web方式后台管理 丰富的增值模块,应对不同客户的需求 与LisPush手机电邮无 阅读全文
posted @ 2024-10-18 19:13 lshan 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 1. 安装 ollama 略 2. AnythingLLM 下载安装 : https://anythingllm.com/ 3.操作: 略 (后续再写) 阅读全文
posted @ 2024-09-29 17:14 lshan 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 1. 下载 ollama https://ollama.com/ 2. 安装完成后,没有操作界面(只能CLI) 3. 检测 安装是否成功 ollama --version 4.常用命令: ollama help 修改默认模型下载位置: ‌概述‌:Ollama默认将模型保存在‌C盘(‌Windows) 阅读全文
posted @ 2024-09-20 19:19 lshan 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1、时间戳转换为指定格式日期 import time t = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) print(t) timestamp = time.time() tuple_time = time.localtime(times 阅读全文
posted @ 2024-08-26 10:58 lshan 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ThreadLocalUtil.java public class ThreadLocalUtil { static final ThreadLocal THREAD_LOCAL = new ThreadLocal(); public static <T> T get() { return (T) 阅读全文
posted @ 2024-08-21 10:09 lshan 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 转自 : https://juejin.cn/post/7356652717392740404 个人开源框架矩阵百万级任务重试框架 Fast-Retrystream流太难用了看看JDFramespring-smart-di 动态切换实现类框架UniHttp 第三方接口对接框架 0、简介 由于经常记不 阅读全文
posted @ 2024-08-15 14:44 lshan 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 时间段划分 0.已经时间段,需要知道这个时间段包含那些天 1.把一个时间段划分为 整天 和非整天的时间段 例如: "2024-07-11 08:30:00" ~ "2024-07-23 08:30:00"; 例如 完整的日期: 2024-07-12 2024-07-13 2024-07-14 202 阅读全文
posted @ 2024-08-08 10:21 lshan 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 参考原文: https://segmentfault.com/a/1190000040457995?sort=newest 问题: 使用Mongodb的事务: pringframework.data.mongodb.UncategorizedMongoDbException: Command fai 阅读全文
posted @ 2024-07-29 17:59 lshan 阅读(53) 评论(0) 推荐(0) 编辑