Java解决跨域问题

发布时间:2024年01月19日

当浏览器控制台出现下面的问题,说明出现了跨域问题。

Access to XMLHttpRequest at 'http://www.float.com/goods/findPage?page=1&size=5' from origin 'www.integer.net.cn' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

此时添加以下Java代码便可以解决跨域问题:

package com.by.config;

import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Component
public class SpringmvcConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        //添加映射路径
        registry.addMapping("/**")
                //放行哪些原始域
                .allowedOrigins("*")
                //是否发送Cookie信息
                .allowCredentials(true)
                //放行哪些原始域(头部信息)
                .allowedHeaders("*");
    }
}

如果出现绑定异常:

在项目的父工程中的pom.xml文件夹中添加一下代码:

<!-- 如果不添加此节点src/main/java目录下的所有配置文件都会被漏掉。 -->
<build>
    <resources>
        <!-- mapper.xml文件在java目录下 -->
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.xml</include>
            </includes>
        </resource>

        <!--解决maven项目resources目录显示为普通目录问题-->
        <resource>
            <directory>src/main/resources</directory>
        </resource>
    </resources>
</build>

?还有就是注解一定一定不要导错!!!!!!!

@Service注解的包是

import com.alibaba.dubbo.config.annotation.Service;

注入时不要用@Autowired

要使用@Reference

包不要导错:

import com.alibaba.dubbo.config.annotation.Reference;

文章来源:https://blog.csdn.net/m0_64107427/article/details/135697083
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。