上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 58 下一页
摘要: 1. 创建仓库 管理里面,可以查看详细的信息 设置登录密码 2. 接下来,将本地镜像推到阿里 : SpringBoot Docker 发布 docker commit 这部分可以不操作 docker commit -m "提交信息" -a "作者" 容器id 要创建的目标镜像名:标签名 [root@ 阅读全文
posted @ 2020-06-27 20:31 VipSoft 阅读(429) 评论(0) 推荐(0)
摘要: 本文是手动模式,可以移步 Intellij IDEA 集成 Docker 发布 使用 Intellij 集成Docker 发布,比较方便 pom 文件 <groupId>com.vipsoft.boot</groupId> <artifactId>vipsoft-web-boot</artifact 阅读全文
posted @ 2020-06-27 19:01 VipSoft 阅读(714) 评论(0) 推荐(0)
摘要: 配置好后 重新加载一下 daemon [root@centos-linux jimmy]# systemctl daemon-reload [root@centos-linux jimmy]# systemcel restart docker 重启后,docker pull 就会有飞一般的感觉 如果 阅读全文
posted @ 2020-06-25 23:35 VipSoft 阅读(951) 评论(0) 推荐(0)
摘要: Profile Config 多环境不同配置 1.添加 Pom 文件 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> < 阅读全文
posted @ 2020-06-20 22:51 VipSoft 阅读(583) 评论(0) 推荐(0)
摘要: http://localhost:8080/swagger-ui.html 弹出: 解决方法:除了SwaggerConfig 上要加@EnableSwagger2 ,启动类上也要加 重启再次访问如下 阅读全文
posted @ 2020-06-20 22:50 VipSoft 阅读(4489) 评论(0) 推荐(0)
摘要: Content 字段是 text 类型(Text是6万多)改成了 longtext 就OK了 ALTER TABLE `Article` CHANGE `Content` `Content` LONGTEXT NULL 阅读全文
posted @ 2020-06-15 16:49 VipSoft 阅读(9939) 评论(0) 推荐(0)
摘要: 1.Ctrl+Shift+P -> install package 安装 Anaconda 查看Python 安装路径 { "python_interpreter":"C:\\Users\\Jimmy\\AppData\\Local\\Programs\\Python\\Python38\\pyth 阅读全文
posted @ 2020-06-06 23:42 VipSoft 阅读(1500) 评论(0) 推荐(0)
摘要: 想让你的windows下 cmd 和我的一样帅吗。下载 cmder 绿色版,然后用我的配置文件,替换原来的文件启动就可以了 另外加cmder添加到右击菜单中,到安装目录中,执行下面命令 Cmder.exe /REGISTER ALL 配置文件下载:cmder 配置下载 报:no main manif 阅读全文
posted @ 2020-06-06 18:55 VipSoft 阅读(1802) 评论(0) 推荐(0)
摘要: Java 项目工程搭建 --创建父工程 Java 项目工程搭建 --创建子模块(依赖父工程) 这个建方比较干净,不会生成乱七八糟的东西,(建完以后,其它模块可以 Copy 改名字) 选择 Maven 直接下一步 只要输入一个AtifactId 没有过多的依赖,适合专业人事 建主启动程序 建 cont 阅读全文
posted @ 2020-06-06 14:52 VipSoft 阅读(2599) 评论(0) 推荐(0)
摘要: 一下篇,常用 Java 项目工程搭建 --创建子模块(依赖父工程) 也不算常用,常用的是 ctrl+c、ctrl+v ,哈哈 Package要手动改下,生成的很丑 选能支持 Alibaba Cloud 的版本,2.2.7支持Cloud 所以这边 boot 选 2.2.7,如果是 2.3.X 这边左边 阅读全文
posted @ 2020-06-06 14:35 VipSoft 阅读(1578) 评论(0) 推荐(0)
摘要: Java 项目工程搭建 --创建父工程 Java 项目工程搭建 --创建子模块(依赖父工程) Intellij 2018 更多详细内容见尚硅谷阳哥视频,实际项目中更多的是copy,修改pom Intelij IDEA 隐藏 .idea 设置字体 启用注解支持 编译使用 java 8 <!-- 统一管 阅读全文
posted @ 2020-06-05 23:14 VipSoft 阅读(733) 评论(0) 推荐(0)
摘要: .Net Core 3.0 续:Error unprotecting the session cookie.The payload was invalid. 出现了新的BUG warn: Microsoft.AspNetCore.Session.SessionMiddleware[7] Error 阅读全文
posted @ 2020-06-05 15:14 VipSoft 阅读(4001) 评论(4) 推荐(0)
摘要: .Net Core 3.0 warn: Microsoft.AspNetCore.Session.SessionMiddleware[7] Error unprotecting the session cookie. System.Security.Cryptography.Cryptographi 阅读全文
posted @ 2020-06-04 19:25 VipSoft 阅读(5281) 评论(0) 推荐(1)
摘要: app.UseIpRateLimiting(); #需要放在前面,否则抓去不准,还有可能会出现下列错误 本次出现这个错误,是因为 .Net Core 跨域 里面的这行:httpContext.Response.StatusCode = 204; 由于StatusCode 先给它设了 204,所以导致 阅读全文
posted @ 2020-06-04 14:07 VipSoft 阅读(3248) 评论(2) 推荐(0)
摘要: Ctrl+Shift+P 安装 pretty json Ctrl+Alt+J 阅读全文
posted @ 2020-06-01 19:06 VipSoft 阅读(1049) 评论(0) 推荐(1)
摘要: Ctrl+Shift+P 安装 ChineseLocalizations 包 如下图 或者 Preferences -> Package Control 阅读全文
posted @ 2020-06-01 18:37 VipSoft 阅读(230) 评论(0) 推荐(0)
摘要: 1. 默认情况下是方框,看起来不太方便 2. 选中 “同” 然后按 Alt +F3【下方的查询框要出现,没有的话按 Ctrl+F 调出来,否则不会高亮显示】 同时,选中的文字还会填入查找框中, 下面是网上说的 wordhighlight 插件,某些类型的文档,如JSON,双击一下就可以高亮,写代码时 阅读全文
posted @ 2020-06-01 17:37 VipSoft 阅读(12248) 评论(0) 推荐(1)
摘要: 1.将 city_code_cn.json 中的省、市、区,翻译成英文,或直接替换去掉省、市 如:苏州市 -> 苏州 转成拼音后就变成 Suzhou,否则就会转成 Suzhoushi 怪怪的 import pypinyin import re def pinyin(word): s = '' for 阅读全文
posted @ 2020-05-28 18:35 VipSoft 阅读(641) 评论(0) 推荐(0)
摘要: 1.输入乱码如图 2.Preferences -> Browse Packages.. 3.加入 "env": { "PYTHONIOENCODING": "utf8" } 重新编译,可输出中文 阅读全文
posted @ 2020-05-27 16:46 VipSoft 阅读(361) 评论(0) 推荐(0)
摘要: 1.安装 netaddr 组件 pip install netaddr -i https://mirrors.aliyun.com/pypi/simple/ from netaddr import IPNetwork print('https://ipjisuanqi.com/#121.224.14 阅读全文
posted @ 2020-05-23 21:53 VipSoft 阅读(2074) 评论(0) 推荐(0)
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 58 下一页