会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
lshan
博客园
首页
新随笔
联系
订阅
管理
2024年12月19日
批量为每个mongodb 创建user 给与权限
摘要: {"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)
编辑
2024年12月13日
aliyun oss pyhton
摘要: #!/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)
编辑
2024年12月10日
springboot filter 自定义开放路径
摘要: 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)
编辑
2024年11月1日
微信支付沙箱测试
摘要: 文档 : pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=23_1
阅读全文
posted @ 2024-11-01 10:54 lshan
阅读(20)
评论(0)
推荐(0)
编辑
2024年10月24日
springboot 整合 ehcache3.x 作为缓存
摘要: 推荐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)
编辑
2024年10月18日
在docker搭建自己的邮件服务器
摘要: 请看:https://www.jianshu.com/p/d94b9495f7f9 ExtMail的优势与特点: 开源、免费,符合中国人习惯,使用不受限制 拥有自主著作权、产权,用户不必担心版权问题 安装简便,友善的全Web方式后台管理 丰富的增值模块,应对不同客户的需求 与LisPush手机电邮无
阅读全文
posted @ 2024-10-18 19:13 lshan
阅读(130)
评论(0)
推荐(0)
编辑
2024年9月29日
AnythingLLM + ollama 个人本地知识库
摘要: 1. 安装 ollama 略 2. AnythingLLM 下载安装 : https://anythingllm.com/ 3.操作: 略 (后续再写)
阅读全文
posted @ 2024-09-29 17:14 lshan
阅读(91)
评论(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
阅读(377)
评论(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
阅读(13)
评论(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
阅读(19)
评论(0)
推荐(0)
编辑
下一页