Java解决跨域问题

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

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
            
                **/*.xml
            
        

        
        
            src/main/resources
        
    

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

@Service注解的包是

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

注入时不要用@Autowired

要使用@Reference

包不要导错:

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

你可能感兴趣的:(java,开发语言,dubbo)