码迷,mamicode.com
首页 > 编程语言 > 详细

springboot允许跨域访问

时间:2020-04-12 14:56:49      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:cross   delete   try   后端开发   eth   actor   als   factory   学习   

前后端开发学习中,vue里面需要跨域访问后台数据

可在springboot后台里面添加个配置类即可:

 

package com.springboottest.config;

import org.springframework.beans.factory.annotation.Configurable;
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 {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")
                .allowedMethods("GET","HEAD","POST","PUT","DELETE","OPTIONS")
                .allowCredentials(true)
                .maxAge(3600)
                .allowedHeaders("*");
    }
}

 

springboot允许跨域访问

标签:cross   delete   try   后端开发   eth   actor   als   factory   学习   

原文地址:https://www.cnblogs.com/bingyangzhang/p/12684818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!