上一页 1 2 3 4 5 6 7 8 ··· 28 下一页
摘要: 基础配置和上篇博客相同 1.项目配置 jekinsfile,放在项目根目录 pipeline { agent any stages { stage('拉取代码') { steps { checkout([$class: 'GitSCM', branches: [[name: '*/master']] 阅读全文
posted @ 2021-04-29 13:50 M号开发者 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 构建maven项目 1.搭建jekins请看 https://www.cnblogs.com/a1304908180/p/14714027.html 2.安装插件 Publish Over SSH插件,gieet插件等 3.jekins系统配置 环境变量要事先在linux服务器上安装好 4.项目配置 阅读全文
posted @ 2021-04-29 13:44 M号开发者 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 不仅要改启动端口,还要改shutdoen端口 阅读全文
posted @ 2021-04-28 16:40 M号开发者 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 安装 https://zhuanlan.zhihu.com/p/151371970 https://www.cnblogs.com/wang-yaz/p/10429899.html https://xinchen.blog.csdn.net/article/details/100857361 配置j 阅读全文
posted @ 2021-04-28 14:39 M号开发者 阅读(59) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/ken_ding/article/details/85623092 npm i node-sass@4.14.1 --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ 先卸载 npm un 阅读全文
posted @ 2021-04-11 00:05 M号开发者 阅读(227) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_30600503/article/details/101811489 在对vue项目进行cnpm i时,报错:RunScriptError: Run "C:\Windows\system32\cmd.exe /d /s /c node-gyp 阅读全文
posted @ 2021-03-03 19:43 M号开发者 阅读(4028) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-03-03 19:41 M号开发者 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: 使用require定义之后,你就可以动态使用了,不用require你就只能写死的。 不用 :src="'../img/image.jpg'" 会被解析为字符串 <img src="../img/image.jpg"> // 正常加载 <img :src="'../img/image.jpg'"> / 阅读全文
posted @ 2021-02-03 14:33 M号开发者 阅读(1832) 评论(1) 推荐(0) 编辑
摘要: 服务器代码,内网穿透 package io.renren.modules.generator.controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bin 阅读全文
posted @ 2021-01-20 13:46 M号开发者 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 在pojo中对特定的date类型属性加了以下配置@DateTimeFormat来控制入参,@JsonFormat来控制出参 复制 @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") @DateTimeFormat(pattern 阅读全文
posted @ 2021-01-16 18:38 M号开发者 阅读(4886) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 28 下一页