springboot允许跨域访问
Posted Smooth seas do not make good s
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot允许跨域访问相关的知识,希望对你有一定的参考价值。
前后端开发学习中,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允许跨域访问的主要内容,如果未能解决你的问题,请参考以下文章