上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 57 下一页
摘要: 四层代理比较方便、简单,nginx.conf 如下 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log inf 阅读全文
posted @ 2020-10-10 17:08 VipSoft 阅读(3042) 评论(0) 推荐(0)
摘要: Fiddler 操作太麻烦,推荐使用 Charles 抓包工具,支持抓取 exe 无需要额外设置,打开就能使用 => https://www.cnblogs.com/vipsoft/p/18027014 浏览器访问网页,可以使用 Fiddler 直接抓去,如果是 exe的客户端,可以借助 Proxi 阅读全文
posted @ 2020-09-30 15:52 VipSoft 阅读(15643) 评论(0) 推荐(2)
摘要: 自带的 Alt+ Insert 中的 Getter and Setter 生成的属性,不能将 private 字段中的注释带过去,比较尴尬。可以通过两种试。 1. 修改模板:这种方法不能得到 private 字段上的属性 2. 下载插件:https://plugins.jetbrains.com/p 阅读全文
posted @ 2020-09-28 14:11 VipSoft 阅读(2416) 评论(0) 推荐(0)
摘要: SpringBoot 引用仓库中没有 第三方包 - 将jar 包安装本地 maven, $ mvn install:install-file -Dfile=d:\Java\jave-1.0.2.jar -DgroupId=it.sauronsoftware -DartifactId=jave -Dversion=1.0.2 -Dpackaging=jar java.lang.NoClassDefFoundError: it/sauronsoftware/jave/EncoderException at java.lang.Class.getDeclaredConstructors0(Native Method) 阅读全文
posted @ 2020-08-28 14:19 VipSoft 阅读(680) 评论(0) 推荐(0)
摘要: 自定义右击菜单,添加指定打开文件方式,分两种, 1. 右击文件,用XX软件打开(Open with XXX) 在注册表 【\HKEY_CLASSES_ROOT\*\shell】 下,新建需要的软件名如:Typora 再建对应的命令 "C:\Program Files\Typora\Typora.ex 阅读全文
posted @ 2020-07-21 14:06 VipSoft 阅读(589) 评论(0) 推荐(0)
摘要: JWT token验证后,通过 ThreadLocal 进行传值 https://jwt.io/#debugger 官网提供的 JAVA 工具还是挺多的,选了个 Star 比较多的 https://github.com/jwtk/jjwt 代码结构如图:需要源码联系QQ:47262947 1. 添加 阅读全文
posted @ 2020-07-05 17:45 VipSoft 阅读(487) 评论(0) 推荐(0)
摘要: [root@centos-linux jimmy]# firewall-cmd --state not running [root@centos-linux jimmy]# sysctl net.ipv4.ip_forward net.ipv4.ip_forward = 0 [root@centos 阅读全文
posted @ 2020-07-04 00:13 VipSoft 阅读(1023) 评论(0) 推荐(0)
摘要: 简单安装为了集成 SpringBoot,真实使用,增加增加更多配置,比如将log映射出来 1.安装 zookeeper [root@centos-linux ~]# docker pull wurstmeister/zookeeper [root@centos-linux ~]# docker pu 阅读全文
posted @ 2020-07-03 22:35 VipSoft 阅读(1429) 评论(0) 推荐(2)
摘要: 1. 创建仓库 管理里面,可以查看详细的信息 设置登录密码 2. 接下来,将本地镜像推到阿里 : SpringBoot Docker 发布 docker commit 这部分可以不操作 docker commit -m "提交信息" -a "作者" 容器id 要创建的目标镜像名:标签名 [root@ 阅读全文
posted @ 2020-06-27 20:31 VipSoft 阅读(424) 评论(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 阅读(934) 评论(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 阅读(578) 评论(0) 推荐(0)
摘要: http://localhost:8080/swagger-ui.html 弹出: 解决方法:除了SwaggerConfig 上要加@EnableSwagger2 ,启动类上也要加 重启再次访问如下 阅读全文
posted @ 2020-06-20 22:50 VipSoft 阅读(4481) 评论(0) 推荐(0)
摘要: Content 字段是 text 类型(Text是6万多)改成了 longtext 就OK了 ALTER TABLE `Article` CHANGE `Content` `Content` LONGTEXT NULL 阅读全文
posted @ 2020-06-15 16:49 VipSoft 阅读(9930) 评论(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 阅读(1491) 评论(0) 推荐(0)
摘要: 想让你的windows下 cmd 和我的一样帅吗。下载 cmder 绿色版,然后用我的配置文件,替换原来的文件启动就可以了 另外加cmder添加到右击菜单中,到安装目录中,执行下面命令 Cmder.exe /REGISTER ALL 配置文件下载:cmder 配置下载 报:no main manif 阅读全文
posted @ 2020-06-06 18:55 VipSoft 阅读(1798) 评论(0) 推荐(0)
摘要: Java 项目工程搭建 --创建父工程 Java 项目工程搭建 --创建子模块(依赖父工程) 这个建方比较干净,不会生成乱七八糟的东西,(建完以后,其它模块可以 Copy 改名字) 选择 Maven 直接下一步 只要输入一个AtifactId 没有过多的依赖,适合专业人事 建主启动程序 建 cont 阅读全文
posted @ 2020-06-06 14:52 VipSoft 阅读(2590) 评论(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 阅读(1575) 评论(0) 推荐(0)
摘要: Java 项目工程搭建 --创建父工程 Java 项目工程搭建 --创建子模块(依赖父工程) Intellij 2018 更多详细内容见尚硅谷阳哥视频,实际项目中更多的是copy,修改pom Intelij IDEA 隐藏 .idea 设置字体 启用注解支持 编译使用 java 8 <!-- 统一管 阅读全文
posted @ 2020-06-05 23:14 VipSoft 阅读(730) 评论(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 阅读(3982) 评论(4) 推荐(0)
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 57 下一页