spring boot解決跨域訪問配置

良木66發表於2020-12-07
package com.example.lm.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 CrossConfig implements WebMvcConfigurer {
    /**
     * spring boot解決跨域訪問問題
     * @param registry
     */
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")
                .allowCredentials(true)
                .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
                .maxAge(3600)
                .allowedHeaders("*");
    }
}

推薦使用WebMvcConfigurer介面來完成配置。。。

相關文章