在Angular的proxy.conf.json文件中添加代理配置,并在Springboot中进行跨域配置。
{ "/api/*": { "target": "http://localhost:8080", "secure": false, "changeOrigin": true, "logLevel": "debug" } }
@Configuration @EnableWebMvc public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowedMethods("*")
.allowedHeaders("*")
.exposedHeaders("Authorization")
.maxAge(3600);
}
}
在这个例子中,代理请求路由到“/ api / *”,并将其定向到Springboot应用程序的端口8080。跨域配置允许从任何来源访问Springboot应用程序。