摘要: {"role": "dbOwner", "db": db_name} #!/usr/bin/env python3 # -*- coding: utf-8 -*- # @mail : lshan523@163.com # @Time : 2024/12/19 17:16 # @Author : Se 阅读全文
posted @ 2024-12-19 17:41 lshan 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python3 # -*- coding: utf-8 -*- # @mail : lshan523@163.com # @Time : 2024/12/13 14:16 # @Author : Sea # @File : uploadOss.py# @Purpose 阅读全文
posted @ 2024-12-13 15:15 lshan 阅读(2) 评论(0) 推荐(0) 编辑
摘要: private List<String> excludePathPatterns = Arrays.asList( "/login/001", "/v2/api-docs", "/swagger-resources/**", "/swagger-ui.html", "/webjars/**", "/ 阅读全文
posted @ 2024-12-10 10:37 lshan 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 文档 : pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=23_1 阅读全文
posted @ 2024-11-01 10:54 lshan 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 推荐ehcache 和 Caffeine https://blog.csdn.net/sco5282/article/details/142024324 版本: springboot2.3.12 + ehcache3.x + app + @EnableCaching application.prop 阅读全文
posted @ 2024-10-24 18:28 lshan 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 请看:https://www.jianshu.com/p/d94b9495f7f9 ExtMail的优势与特点: 开源、免费,符合中国人习惯,使用不受限制 拥有自主著作权、产权,用户不必担心版权问题 安装简便,友善的全Web方式后台管理 丰富的增值模块,应对不同客户的需求 与LisPush手机电邮无 阅读全文
posted @ 2024-10-18 19:13 lshan 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1. 安装 ollama 略 2. AnythingLLM 下载安装 : https://anythingllm.com/ 3.操作: 略 (后续再写) 阅读全文
posted @ 2024-09-29 17:14 lshan 阅读(91) 评论(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 阅读(377) 评论(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 阅读(13) 评论(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 阅读(19) 评论(0) 推荐(0) 编辑