摘要: 1、windows 安装包管理: 安装choco https://chocolatey.org/install cmd输入命令:Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::Se 阅读全文
posted @ 2020-05-19 15:26 厦门_成 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 举个例子 Boolean xx= Pattern.matches("^[a-zA-Z0-9\\s]*$", " 801 Tampines Ave 4 Singapore 520801sss1"); 匹配结果是false 在众多正则表达式的教程中,对于\s的解释都是匹配空格。但在java中,\s不能对 阅读全文
posted @ 2020-02-26 14:42 厦门_成 阅读(1603) 评论(0) 推荐(2) 编辑
摘要: 1:官方教程 https://jenkins.io/zh/doc/book/installing/2:拉取jenkins镜像 docker pull jenkinsci/blueocean3:输入启动命令 docker run \ -u root \ --rm \ -d \ -p 8080:8080 阅读全文
posted @ 2020-02-24 17:42 厦门_成 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 出现问题是docker jenkins 里面没有自动安装node导致找不到这个Node命令 解决方案:手动安装nodejs # 进入jenkins对应容器中 # docker exec -it [对应容器id] bash # 安装nodejs # apk add --no-cache nodejs 阅读全文
posted @ 2020-02-24 17:34 厦门_成 阅读(1521) 评论(0) 推荐(0) 编辑
摘要: jenkins 安装必须插件 NodeJS Plugin Publish Over SSH 1:新建一个任务,选择构建一个自由风格的软件项目 2:源码管理选择Git 2.1 填写Git项目地址Repository URL 2.2 配置Git账户密码【Credentials】通过右侧添加 3: 构建触 阅读全文
posted @ 2020-02-24 17:32 厦门_成 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 1、下载redis镜像 docker pull redis 2、下载redis.conf文件 https://redis.io/topics/config 这边查找自己服务器redis对应的版本文件 我的是5.0版本的 https://raw.githubusercontent.com/antire 阅读全文
posted @ 2019-12-16 22:23 厦门_成 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 打开cmd命令窗口,执行 taskkill /f /im winlogon.exe /t 阅读全文
posted @ 2019-10-25 17:27 厦门_成 阅读(1570) 评论(1) 推荐(0) 编辑
摘要: 报错内容:class path resource [client.p12] cannot be resolved to absolute file path because it does not reside in the file system 问题所在: 代码使用了 ResourceUtils 阅读全文
posted @ 2019-07-11 15:44 厦门_成 阅读(1440) 评论(0) 推荐(0) 编辑
摘要: maven导入sqlserver驱动jar包依赖包到本地仓库 maven项目使用sqlserver的依赖,先下载一个sqlserver的驱动,网址:https://www.microsoft.com/en-us/download/confirmation.aspx?id=11774 然后解压找到sq 阅读全文
posted @ 2019-07-05 09:28 厦门_成 阅读(2248) 评论(0) 推荐(0) 编辑
摘要: $(window).resize(function () { $('#dtOrder').bootstrapTable('resetView') }) 阅读全文
posted @ 2019-06-14 16:45 厦门_成 阅读(1126) 评论(0) 推荐(0) 编辑