配置类

@Configuration
public class CorsConfiguration {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurer() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**");
}
};
}
}

前端请求

错误原因:SpringBoot默认跨域方法只支持HEAD,GET,POST

配置类修改后

@Configuration
public class CorsConfiguration {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurer() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowCredentials(true)
.allowedMethods("GET", "POST", "PUT", "DELETE");
}
};
}
}

附相关SpringBoot部分源码

//package org.springframework.web.cors.CorsConfiguration
/** Wildcard representing <em>all</em> origins, methods, or headers. */
public static final String ALL = "*"; private static final List<HttpMethod> DEFAULT_METHODS = Collections.unmodifiableList(
Arrays.asList(HttpMethod.GET, HttpMethod.HEAD)); private static final List<String> DEFAULT_PERMIT_METHODS = Collections.unmodifiableList(
Arrays.asList(HttpMethod.GET.name(), HttpMethod.HEAD.name(), HttpMethod.POST.name())); private static final List<String> DEFAULT_PERMIT_ALL = Collections.unmodifiableList(
Collections.singletonList(ALL));

public CorsConfiguration applyPermitDefaultValues() {
if (this.allowedOrigins == null) {
this.allowedOrigins = DEFAULT_PERMIT_ALL;
}
if (this.allowedMethods == null) {
this.allowedMethods = DEFAULT_PERMIT_METHODS;
this.resolvedMethods = DEFAULT_PERMIT_METHODS
.stream().map(HttpMethod::resolve).collect(Collectors.toList());
}
if (this.allowedHeaders == null) {
this.allowedHeaders = DEFAULT_PERMIT_ALL;
}
if (this.maxAge == null) {
this.maxAge = 1800L;
}
return this;
}

最新文章

  1. 腾讯php经历
  2. jQuery 插件基础
  3. objective-c(继承)
  4. Hadoop阅读笔记(三)——深入MapReduce排序和单表连接
  5. shell条件与循环
  6. Dubbo架构设计详解-转
  7. 暂时解决Sublime Text 2不支持input问题(转)
  8. 【IOS】利用ASIHTTPRequest 实现一个简单的登陆验证
  9. Base64 编码
  10. 九度OJ 1120 全排列 -- 实现C++STL中next_permutation()
  11. 用Windbg来看看CLR的JIT是什么时候发生的
  12. VS 对于LINK fatal Error 问题 解决方案
  13. JS 利用window.open实现post方式的参数传递
  14. Android中那些权限
  15. Welcome to Django!
  16. java+selenium实现web自动化
  17. strcpy、memcpy和memset的区别
  18. (转 留存)Windows环境下的NodeJS+NPM+GIT+Bower安装配置步骤
  19. Lua基础---运算符
  20. Java 端口扫描器 TCP的实现方法

热门文章

  1. 列表 元祖 range
  2. 一个随意list引发的惨案(java到底是值传递还是引用 传递?)
  3. HTML基础知识(块级标签,行内标签,行内块标签)
  4. Adobe PS常用快捷键
  5. C# 创建自定义配置节点1
  6. Python的字符串编码
  7. 关于CSS Grid Layout的代码解释
  8. Java编程思想——第17章 容器深入研究 读书笔记(三)
  9. 客户端 SOCKET 编程
  10. javascript语言学习