上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页

2020年3月5日

MYSQL8 配置远程连接

摘要: 1、登录 mysql -u root -p 2、切换到use库 use mysql 3、查询用户表host select user,host from user; 我修改的是root用户,已经将host修改为%了,不为%的执行下一步 4、将root用户的host 从localhost改为 %即可 u 阅读全文

posted @ 2020-03-05 11:38 滚动的蛋 阅读(967) 评论(0) 推荐(0) 编辑

windows server Nginx 常用命令

摘要: 验证配置是否正确: nginx -t 查看Nginx的版本号:nginx -V 启动Nginx:start nginx 快速停止或关闭Nginx:nginx -s stop 正常停止或关闭Nginx:nginx -s quit 配置文件修改重装载命令:nginx -s reload 阅读全文

posted @ 2020-03-05 11:12 滚动的蛋 阅读(452) 评论(0) 推荐(0) 编辑

2020年3月4日

dubbo,zookeeper,eureka之间的关系与区别

摘要: 一、Dubbo相当与Spring CloudDubbo是个微服务整体架构的框架,提供的功能包括服务注册发现,远程调用,监控等等。对标的项目是spring cloud。但Spring Cloud是一个系列的软件,有很多组件来拼装提供微服务的总体架构。Dubbo自己全封装了。二、zookeeper集成在 阅读全文

posted @ 2020-03-04 17:26 滚动的蛋 阅读(3015) 评论(0) 推荐(0) 编辑

什么是feign?

摘要: 查看:https://www.jianshu.com/p/8c7b92b4396c 阅读全文

posted @ 2020-03-04 16:15 滚动的蛋 阅读(152) 评论(0) 推荐(0) 编辑

Cannot execute request on any known server

摘要: 当在启动 spring cloud 微服务 provider 时,如果出现异常信息:Cannot execute request on any known server,原因是,在默认设置下,eureka 服务注册中心也会将自己作为客户端来尝试注册它自己,所以我们需要禁用它的客户端注册。配置如下: 阅读全文

posted @ 2020-03-04 16:06 滚动的蛋 阅读(709) 评论(0) 推荐(0) 编辑

SpringBoot和SpringCloud版本对应

摘要: 背景SpringBoot和SpringCloud的版本需要对应,不然会因为jar包版本不兼容导致一系列奇怪的问题。因为官方不会保证SpringBoot和SpringCloud不同版本的兼容性。 大版本对应 SpringCloud版本 SpringBoot版本 Hoxton 2.2.x 2.2.x G 阅读全文

posted @ 2020-03-04 15:38 滚动的蛋 阅读(1981) 评论(0) 推荐(0) 编辑

parent.relativePath' points at wrong local POM

摘要: 聚合模块未找到父类依赖的路径: 提示:parent.relativePath' points at wrong local POM 解决办法: 选再groupid和artifactid中输入父类的配置,然后再选中父类pom即可 阅读全文

posted @ 2020-03-04 11:22 滚动的蛋 阅读(5177) 评论(0) 推荐(0) 编辑

2020年3月2日

nginx的proxy_pass路径转发规则最后带/问题

摘要: 一、location匹配路径末尾没有 / location /sta{proxy_pass http://192.168.1.1/sta;} 外面访问:http://外网IP/sta/sta1.html相当于访问:http://192.168.1.1/sta/sta1.html 二、location 阅读全文

posted @ 2020-03-02 22:18 滚动的蛋 阅读(2304) 评论(0) 推荐(1) 编辑

2020年2月29日

绑定银行卡的一些细节

摘要: 1、整理支持的银行卡 看自己的业务 2、验证绑定的银行卡是否有效 调用支付保验证接口 https://ccdcapi.alipay.com/validateAndCacheCardInfo.json?_input_charset=utf-8&cardNo=CAR_NO&cardBinCheck=tr 阅读全文

posted @ 2020-02-29 18:06 滚动的蛋 阅读(271) 评论(0) 推荐(0) 编辑

2020年2月28日

Maven 学习

摘要: 1、构建项目中的细节 groupId :the unique identifier of the organization or group that created the project (创建该项目的组织或者小组的唯一标识) 例子:比如我的组织叫做ant,项目名称jeepe ,那么可以将gro 阅读全文

posted @ 2020-02-28 14:08 滚动的蛋 阅读(227) 评论(0) 推荐(0) 编辑

上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页

导航