会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
lshan
博客园
首页
新随笔
联系
订阅
管理
2024年11月1日
微信支付沙箱测试
摘要: 文档 : pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=23_1
阅读全文
posted @ 2024-11-01 10:54 lshan
阅读(5)
评论(0)
推荐(0)
编辑
2024年10月24日
springboot 整合 ehcache3.x 作为缓存
摘要: 版本: 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)
编辑
2024年10月18日
在docker搭建自己的邮件服务器
摘要: 请看:https://www.jianshu.com/p/d94b9495f7f9 ExtMail的优势与特点: 开源、免费,符合中国人习惯,使用不受限制 拥有自主著作权、产权,用户不必担心版权问题 安装简便,友善的全Web方式后台管理 丰富的增值模块,应对不同客户的需求 与LisPush手机电邮无
阅读全文
posted @ 2024-10-18 19:13 lshan
阅读(47)
评论(0)
推荐(0)
编辑
2024年9月29日
AnythingLLM + ollama 个人本地知识库
摘要: 1. 安装 ollama 略 2. AnythingLLM 下载安装 : https://anythingllm.com/ 3.操作: 略 (后续再写)
阅读全文
posted @ 2024-09-29 17:14 lshan
阅读(54)
评论(0)
推荐(0)
编辑
2024年9月20日
基于 ollama 下载,部署AI 大模型 提供API 服务
摘要: 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)
编辑
2024年8月26日
Python time时间格式化
摘要: 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)
编辑
2024年8月21日
ThreadLocal ThreadLocalUtil
摘要: 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)
编辑
2024年8月15日
JAVA8 stream 流 vs JDFrame (转)
摘要: 转自 : https://juejin.cn/post/7356652717392740404 个人开源框架矩阵百万级任务重试框架 Fast-Retrystream流太难用了看看JDFramespring-smart-di 动态切换实现类框架UniHttp 第三方接口对接框架 0、简介 由于经常记不
阅读全文
posted @ 2024-08-15 14:44 lshan
阅读(30)
评论(0)
推荐(0)
编辑
2024年8月8日
java 时间段划分 1.把一个时间段划分为 整天 和非整天的时间段 2. 把List<LocalDate> 按相邻的day , 划分为一个时间段,并且每个时间段 最大为3天
摘要: 时间段划分 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)
编辑
2024年7月29日
Springboot 解决mongodb transaction WriteConflict问题
摘要: 参考原文: https://segmentfault.com/a/1190000040457995?sort=newest 问题: 使用Mongodb的事务: pringframework.data.mongodb.UncategorizedMongoDbException: Command fai
阅读全文
posted @ 2024-07-29 17:59 lshan
阅读(53)
评论(0)
推荐(0)
编辑
下一页