学习材料
2024最新SpringCloud微服务开发与实战,java黑马商城项目微服务实战开发(涵盖MybatisPlus、Docker、MQ、ES、Redis高级等)
网关
微服务下,好多不同地址和端口,而前端只知道8080,这怎么解决?
1.快速入门:路由规则的配置是重点
这里要解决一下nacos总是报错:参考
2.详细的配置
路由断言
过滤器
网关登录校验
1.自定义过滤器
GlobalFilter要着重掌握。
2.实现登录校验
好多函数要掌握。
package com.hmall.gateway.filters;import cn.hutool.core.text.AntPathMatcher;
import com.hmall.common.exception.UnauthorizedException;
import com.hmall.gateway.config.AuthProperties;
import com.hmall.gateway.util.JwtTool;
import lombok.RequiredArgsConstructor;
import org.springframework.cloud.gateway.filter.GatewayFilterChain;
import org.springframework.cloud.gateway.filter.GlobalFilter;
import org.springframework.core.Ordered;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpResponse;
import org.springframework.stereotype.Component;
import org.springframework.web.server.ServerWebExchange;
import reactor.core.publisher.Mono;import java.util.List;@Component
@RequiredArgsConstructor
public class AuthGlobalFilter implements GlobalFilter, Ordered {private final AuthProperties authProperties;private final JwtTool jwtTool;private final AntPathMatcher antPathMatcher = new AntPathMatcher();@Overridepublic Mono<Void> filter(ServerWebExchange exchange, GatewayFilterChain chain) {//获取request中的headerServerHttpRequest request = exchange.getRequest();//是否需要请求拦截if (isExclude(request.getPath().toString())){return chain.filter(exchange);}//获取tokenString token = null;List<String> headers = request.getHeaders().get("authorization");if(headers!=null && !headers.isEmpty()){token = headers.get(0);}//解析校验Long userId = null;try {userId = jwtTool.parseToken(token);} catch (UnauthorizedException e) {ServerHttpResponse response = exchange.getResponse();response.setStatusCode(HttpStatus.UNAUTHORIZED);return response.setComplete();}// 传递信息System.out.println("UserId="+userId);return chain.filter(exchange);}private boolean isExclude(String path) {for (String pathPattern: authProperties.getExcludePaths()) {if (antPathMatcher.match(pathPattern, path)){return true;}}return false;}@Overridepublic int getOrder() {return 0;}
}
3.网关传递用户信息
没有什么是重开解决不了的!
可以传递到微服务集群了,但是每一个微服务都写相同的代码去获取太麻烦了。所以在hm-common包下来设置拦截器统一保存在threadlocal里面。(这里注意,拦截器怎么使用,自动装配怎么设置,怎么设置自动装配条件。)
SpringMVC拦截器复习:先是实现拦截器,然后创建配置类,还要写自动装配。
4.OpenFeign传递用户
微服务之间相互请求,如何传递用户信息。
4.配置管理
最近电脑老是蓝屏,之后再重启虚拟机,虚拟机的ip地址就会+1,导致很多东西要重新配置。
所以,干脆学了一下如何固定ip地址。教程
5.动态路由
具体还是看文档。感觉不是很困难。就是本地定义一个监听器,nacos设置json的配置。然后监听就好了。