SpringBoot 集成微信云托管对象存储 通过SpringBoot将文件上传到微信云托管的对象存储并返回访问地址,是一个既实用又能提升项目性能的方案。下面我来为你分步讲解如何实现。 🖥️ SpringBoot 集成微信云托管对象存储 微信云托管的对象存储(底层基于腾讯云COS)为应用提供了可靠的文件存储解决方案,能有效减轻应用服务器的压力 2025-09-09
npm install -g lerna 怎么处理? 1. 使用国内镜像源(推荐) 修改Jenkins构建脚本,使用淘宝镜像源来安装lerna: # 设置npm镜像源为淘宝镜像 npm config set registry https://registry.npmmirror.com # 使用淘宝镜像安装lerna npm install -g l 2025-09-08
Ubuntu系统安装Nginx步骤 以下是在Ubuntu系统上安装和配置Nginx的详细步骤: 1. 更新系统包列表 sudo apt update 2. 安装Nginx sudo apt install nginx 3. 启动Nginx服务 # 启动Nginx sudo systemctl start nginx # 设置开机自启 2025-09-08
jenkins部署前端项目 Jenkins部署配置方案 基于对项目结构的分析,这是一个基于Lerna的Monorepo项目,包含两个React应用(ope运营平台和business商家平台)。以下是详细的Jenkins配置方案: 项目结构分析 项目类型:Lerna Monorepo架构,包含三个包: ope:运营平台(端口80 2025-09-08
SpringBoot打开Https 1:执行命令: keytool -genkeypair -alias tomcat -keyalg RSA -keysize 2048 -storetype PKCS12 -keystore keystore.p12 -validity 3650 2:修改配置 # application.yml s 2025-09-02
flutter常用命令 1:检查可用的模拟器设备 flutter emulators 2:运行模拟器 flutter emulators --launch apple_ios_simulator 3:运行到不同环境 flutter run -d F54AF11C-AF41-4864-BBDF-4E104FDFE92B -- 2025-08-28
关于MySql的错误记录 1:报错 1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'rent.ct_order_audit_record.id' which is not func 2025-08-28
关于Docker的一些事情 1:关于dokcer国内镜像设置 { "registry-mirrors": [ "https://你的阿里云服务器申请的镜像地址.aliyuncs.com", "https://mirror.ccs.tencentyun.com", "https://mirror.ba 2025-08-26
关于flutter的安装及相关问题 1:按照参考 https://blog.csdn.net/wsyx768/article/details/134122594 2:执行flutter run报错 Downloading android-arm-profile/darwin-x64 tools... 26 2025-08-22