springboot2.1.3 配置前后端跨域问题
Posted JimmyShan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot2.1.3 配置前后端跨域问题相关的知识,希望对你有一定的参考价值。
很简单,创建一个配置类即可,如下:
package com.app.gateway.common.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class WebMvcConfig implements WebMvcConfigurer { public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowedOrigins("*") .allowedHeaders("*") .allowedMethods("*") .maxAge(30 * 1000); } }
以上是关于springboot2.1.3 配置前后端跨域问题的主要内容,如果未能解决你的问题,请参考以下文章