Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception 解决跨域问题

Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception 解决跨域问题,第1张

Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception 解决跨域问题

首先在这里说声抱歉,之前在文章上立下的flag倒了,因为这段时间我要准备期末考试,所以就顾不上这边的文章发布了,明天还有一门考试,我也是抽时间赶紧把我在前段时间遇到的问题发出来期望对大家有帮助。

这是我在使用@Configration注解解决跨域问题时遇到的新问题,当时也百度了,说是Service层实现类未添加注解@Autowired或者说是Controller层没有加@ResponseBody但是我是添加了Autowired注解的,在Controller层又新加了@ResponseBody注解但都没有解决问题。

先看一下我之前写的代码

@Configuration
public class CrosConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")              
                .allowCredentials(true)
                .allowedMethods("*")
                .maxAge(3600);
    }
}

这段代码实现跨域和网上的代码是一样的或者相似的,但还是报错。

最后解决代码:

@Configuration
public class CrosConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOriginPatterns("*")
                .allowCredentials(true)
                .allowedMethods("*")
                .maxAge(3600);
    }
}

这里就是单纯的把allowedOrigins改成了allowedOriginPatterns其他的都没变。

好了先说这么多了,我要继续复习明天的考试课了。

大家一起加油!!!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5685077.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存