我是靠谱客的博主 害羞手链,最近开发中收集的这篇文章主要介绍【前端】使用vue-admin-template封装的Axios时跨域问题使用@CrossOrigin注解时,再用@RequestMapping会出现拦截失效,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
使用@CrossOrigin注解时,再用@RequestMapping会出现拦截失效
解决方法1:
如果是get请求那就用@GetMapping即可
解决方法2:
配置一个跨域配置类
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 CORSConfigurer implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS")
.allowCredentials(true)
.maxAge(3600)
.allowedHeaders("*");
}
}
最后
以上就是害羞手链为你收集整理的【前端】使用vue-admin-template封装的Axios时跨域问题使用@CrossOrigin注解时,再用@RequestMapping会出现拦截失效的全部内容,希望文章能够帮你解决【前端】使用vue-admin-template封装的Axios时跨域问题使用@CrossOrigin注解时,再用@RequestMapping会出现拦截失效所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复