摘要:
需要引入的依赖,我这里集成了nacos,openfeign等。 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://ww 阅读全文
摘要:
命令:su 敲完命令后让你输入密码,密码正确就能进root用户。 如果装系统时没让输入root密码,可以什么都不输入试试,或者试一下你创建用户时输入的密码。不行的话试着看能不能设置root密码,命令如下: $:sudo passwd root $:(输入密码) $:(确认密码) 阅读全文
摘要:
本实例集成框架: spring boot spring web:sprignmvc openfeign:服务之间调用 nacos discovery:服务注册与发现 nacos config:配置中心 gateway:服务网关 sentinel:服务限流 loadbalancer:负载均衡 官方文档 阅读全文
摘要:
nacos整合gateway gateway 配置uri时:使用注册中心应用名称 出现 503 问题 其原因缺少负载均衡器 Ribbon springcloud2020之后已经移除 替代品为loadbalancer 依赖: <dependency> <groupId>org.springframew 阅读全文
摘要:
list转map @Data public class Person { private String id; private String name; private int age; public Person(String id, String name, int age) { this.id 阅读全文
摘要:
consul 集成openfeign 依赖如下: <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-depe 阅读全文
摘要:
systemctl stop firewalld.service #关闭防火墙服务 systemctl disable firewalld.service #禁止防火墙开启启动 systemctl restart iptables.service #重启防火墙使配置生效 systemctl enab 阅读全文
摘要:
consul.exe文件 找到之后,启动consul consul agent -dev 默认地址127.0.0.1:8500 使用:consul.exe agent -dev -client 自己本地ipv4地址 启动consul启动也可 用自己的本地ip地址+8500访问网站。 windows系 阅读全文
摘要:
IO模型大致可分为四类:同步阻塞IO(Blocking IO)、同步非阻塞 IO(Non-blocking IO)、 IO 多路复用(IO Multiplexing)、 异步 IO(Asynchronous IO)。 java开发层面的IO分为两种面向流(Input/Output Stream)和面 阅读全文
摘要:
api请求类型类注解 @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface ApiEvent { String[] value() default {"BASE"}; } API接口servic 阅读全文