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 solve Cross-domain access by spring cloud zuul

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

This article focuses on "how to solve cross-domain access with spring cloud zuul". Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how spring cloud zuul solves cross-domain access".

Spring zuul does not support cross-domain and needs to be configured.

1. Configure application.ymlzuul: sensitive-headers: Access-Control-Allow-Origin ignored-headers: Access-Control-Allow-Origin,Vary,X-Frame-Options,token

Guess the key point is on the second line, ignoring Access-Control-Allow-Origin.

two。 Configure filter@Configurationpublic class GatewayCrosConfig {@ Bean public CorsFilter corsFilter () {final UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource (); final CorsConfiguration corsConfiguration = new CorsConfiguration (); / / corsConfiguration.setAllowCredentials (true); corsConfiguration.addAllowedHeader ("*"); corsConfiguration.addAllowedOrigin ("*"); corsConfiguration.addAllowedMethod ("*"); source.registerCorsConfiguration ("/ * *", corsConfiguration); return new CorsFilter (source) 3. Cross-domain issues between zuul and cloud internal services

There is no cross-domain problem in zuul internal forwarding.

4. Spring mvc configuration cross-domain @ Configurationpublic class WebConfig extends WebMvcConfigurationSupport {@ Override public void addCorsMappings (CorsRegistry registry) {registry.addMapping ("/ *") .allowedHeaders ("Content-Type", "X-Requested-With", "accept,Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers") "token") .allowedMethods ("*") .allowedOrigins ("*") .allowCredentials (true) }}

This is achieved by setting the cors configuration

At this point, I believe you have a deeper understanding of "spring cloud zuul how to solve cross-domain access". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

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

Internet Technology

Wechat

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

12
Report