Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to parse an example of springcloudgateway Gateway routing assignment Code

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article will explain in detail how to parse the routing assignment code examples of springcloudgateway gateways. The content of the article is of high quality, so the editor shares it for you as a reference. I hope you will have some understanding of the relevant knowledge after reading this article.

1. Create a new module based on the parent project

2 add dependencies to the dwelling pom file

Org.springframework.cloud spring-cloud-starter-gateway com.alibaba.cloud spring-cloud-starter-alibaba-nacos-discovery

3, add configuration

Server: port: 9091spring: application: name: gateway3 cloud: nacos: discovery: server-addr: localhost:8848 namespace: c22e5019-0bee-43b1-b80b-fc0b9d847501 register-enabled: false gateway: routes:-id: demo_route uri: lb://demo predicates:-Path=/demo/**-id: demo2_test uri: lb://demo2 predicates:-Path=/user/**

4, write the startup class

@ SpringBootApplication@EnableDiscoveryClientpublic class Gateway3Application {public static void main (String [] args) {SpringApplication.run (Gateway3Application.class, args);}}

5. Access http://localhost:9091/demo or http://localhost:9091/demo2 to route to the specified service

On how to parse the springcloudgateway gateway routing assignment code example is shared here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report