<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.6</version>
<relativePath/>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2022.0.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
<version>4.0.4</version>
</dependencies>
spring:
application:
name: gateway
webflux:
base-path: /gw/api/v1
cloud:
gateway:
routes:
- id: user-service
uri: http://127.0.0.1:8080
predicates:
- Path=/user/**
filters:
- StripPrefix=1
Thanks for your time.
This is my pom version
Sample
Thanks for your time.