SpringBoot中引入了springcloud-gateway,路由不生效为什么?

今天闲来无事,想看看springcloud-gateway的,于是自开始搭建gateway但是,搭建完成后想验证,发现有问题总会报404,接下来详细说下操作过程,

1.首先创建2个springBoot的工程。一个作为gateway 一个可以作为路由的目标服务,今天我们只说gateway中的配置:

pom文件的配置:

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-parent</artifactId>

<version>2.7.18</version>

<relativePath/> <!-- lookup parent from repository -->

</parent>

<groupId>com.jihaixiang</groupId>

<artifactId>boot-mybatis</artifactId>

<version>0.0.1-SNAPSHOT</version>

<name>boot-mybatis</name>

<description>Demo project for Spring Boot+mybatis</description>

<properties>

<java.version>1.8</java.version>

</properties>

<dependencies>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter</artifactId>

</dependency>

<dependency>

<groupId>org.springframework.cloud</groupId>

<artifactId>spring-cloud-starter-gateway</artifactId>

<version>3.1.9</version>

</dependency>

<!-- Spring Boot Web Starter -->

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-webflux</artifactId>

</dependency>

</dependencies>

<build>

<plugins>

<plugin>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-maven-plugin</artifactId>

</plugin>

</plugins>

</build>

</project>
2.yml文件配置

spring:

application:

name: cloud-gateway

cloud:

gateway:

routes:

  • id: example_route222

uri: http://192.168.1.4:8092

predicates:

  • Path=/example/**

#filters:

#- StripPrefix=1

#filters:

- RewritePath=/example/(?<segment>.*), /$\{segment}

server:

port: 8091

其中http://192.168.1.4:8092是我的路由目标地址,如何在测试过程中发现并没有路由到http://192.168.1.4:8092,那一定是我们的访问的地址有问题,

比如:当我们http://192.168.1.4:8091/example/test的时候,最终路由到的地址是

http://192.168.1.4:8092/example/tes,那我们就首先要看我们8092的服务端是不是可以直接访问通。

但是如果你配置了 #filters:

#- StripPrefix=1 意味着,如果你访问地址为http://192.168.1.4:8092/example/tes,实际的访问地址就是http://192.168.1.4:8092/tes,因为StripPrefix=1是将example过滤掉了

相关推荐
哪里不会点哪里.8 分钟前
Spring Boot 自动装配原理深度解析
java·spring boot·后端
曹轲恒20 分钟前
SpringBoot整合SpringMVC(下)
java·spring boot·spring
空空kkk25 分钟前
spring boot——配置文件
java·数据库·spring boot
what丶k26 分钟前
Spring Boot 3 注解大全(附实战用法)
java·spring boot·后端
gAlAxy...26 分钟前
Thymeleaf 从入门到精通:Spring Boot 模板引擎实战指南
java·spring boot·后端
czlczl2002092539 分钟前
工作流 Flowable 全流程
java·spring boot·后端
空空kkk39 分钟前
Spring、Spring MVC、SpringBoot的欢迎页配置
spring boot·spring·mvc
loading小马1 小时前
Mybatis-Plus超级实用的多种功能用法
java·spring boot·后端·maven·mybatis
小北方城市网1 小时前
Spring Cloud Gateway 生产级微内核架构设计与可插拔过滤器开发
java·大数据·linux·运维·spring boot·redis·分布式
计算机学姐1 小时前
基于SpringBoot的自习室座位预定系统【预约选座+日期时间段+协同过滤推荐算法+数据可视化统计】
java·vue.js·spring boot·后端·spring·信息可视化·tomcat