zhuangjie
ZhuangJie
上一页 1 2 3 4 5 6 ··· 40 下一页
摘要: 下载minio.exe # 下载旧版本看日期minio下载后改名为minio.exe(丰富管理操作的,2025已经使用精简界面了,如开放资源访问要用mc来配置) 下载mc.exe 创建startMinio.bat @echo off :: MinIO 配置参数 set MINIO_EXE_PATH= 阅读全文
posted @ 2025-09-02 10:49 zhuangjie 阅读(43) 评论(0) 推荐(0)
摘要: 软件: Jenkins 容器:jenkins/jenkins:lts Jenkins 插件:Git Parameter, Pipeline, NodeJS Plugin 安装 Jenkins 的步骤就不写了,我这里使用的是 docker 方式,大家也可以参考我前面的文章:https://www.cn 阅读全文
posted @ 2025-08-25 20:17 zhuangjie 阅读(14) 评论(0) 推荐(0)
摘要: springsecurity配置开放那里不要加统一的全局路径 /api ,只需要controller类+方法上的路径 阅读全文
posted @ 2025-08-25 16:05 zhuangjie 阅读(7) 评论(0) 推荐(0)
摘要: 1、安装好对应的node版本,vue3使用18+2、配置镜像加速,`npm config set registry https://mirrors.huaweicloud.com/repository/npm/`3、安装@vue/cli,就可以使用vue create创建vue项目了4、使用vue 阅读全文
posted @ 2025-08-17 23:54 zhuangjie 阅读(98) 评论(0) 推荐(0)
摘要: springboot项目打包,运行jar时出现Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 出现这个问题是你reso 阅读全文
posted @ 2025-08-14 22:36 zhuangjie 阅读(6) 评论(0) 推荐(0)
摘要: 前端加 withCredentials: true这样前端才会带cookie,这样才能确定这个哪个会话,从而不会每次请求session都不一样了,但这可能会引起跨域,即使前端使用了代理,所以后端要进行配置(允许接收cookie)。 前端: import axios from 'axios'; imp 阅读全文
posted @ 2025-06-04 09:16 zhuangjie 阅读(66) 评论(0) 推荐(0)
摘要: UploadPathHelper package com.helper; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; impor 阅读全文
posted @ 2025-05-17 11:32 zhuangjie 阅读(7) 评论(0) 推荐(0)
摘要: ObjectMapper objectMapper = new ObjectMapper(); objectMapper.registerModule(new JavaTimeModule()); // 支持 java.timeobjectMapper.disable(SerializationFe 阅读全文
posted @ 2025-05-13 16:04 zhuangjie 阅读(673) 评论(0) 推荐(0)
摘要: 解决方法:清理掉 C:\Users\xxx\.npmrc 文件 我的出错: PS C:\Users\lenovo\Desktop\心里健康\xinlijiankangxitong\src\main\resources\admin\admin> npm -vERROR: npm v10.5.0 is 阅读全文
posted @ 2025-04-29 14:56 zhuangjie 阅读(279) 评论(0) 推荐(0)
摘要: # 保存当前运行中的镜像到一个临时文件 docker ps --format "{{.Image}}" | sort | uniq > /tmp/used_images.txt # 遍历本地所有镜像 for image_id in $(docker images -q | uniq); do # 拿 阅读全文
posted @ 2025-04-28 14:45 zhuangjie 阅读(27) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 40 下一页