繁体   English   中英

原因:即使在Java资源中明确指定,CORS标头“ Access-Control-Allow-Origin”也丢失

[英]Reason: CORS header ‘Access-Control-Allow-Origin’ missing even though explictly specificed in java resource

我正在两个不同的端口上测试我的后端(在tomcat服务器上使用Jersey的Java)和前端(使用webpack进行服务的Angular 4),因此我得到了一个cors访问控制源模块。 对于我的get方法,一切正常,可以在UI上找到任何请求的数据。 现在,我正在测试POST方法,并且标题中始终出现相同的消息。

我的post方法应该持久保存发送给它的数据,并返回带有新持久实体位置的响应。

@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Response persistAccountLocation(AccountLocation entity) throws URISyntaxException {


    accountLocationService.persist(entity);

    JsonObject object = Json.createObjectBuilder()
            .add("location", "api/v1/accounts_locations/"+entity.getLocation_id()).build();

    return Response.status(Response.Status.CREATED)// 201
            .entity("Location created")
            .header("Access-Control-Allow-Origin","*")
            .header("Access-Control-Allow-Methods", "POST,GET,PUT,DELETE")
            .allow("OPTIONS")
            .entity(object.toString()).build();
}

在Firefox浏览器的“网络”标签中,我只能看到状态为200的选项

Host: localhost:8081
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Access-Control-Request-Method: POST
Access-Control-Request-Headers: access-control-allow-origin,content-type
Origin: http://localhost:4200
Connection: keep-alive

但是在那之后,这个帖子就永远不会发生。 我假设那时CORS阻止了它。 除了资源类之外,我还应该允许访问控制吗? 我已经读到典型的所有CORS配置都是在服务器端完成的。 完全迷失了。 任何反馈表示赞赏

编辑

public class CORSResponseFilter
implements ContainerResponseFilter {

    public void filter(ContainerRequestContext requestContext, ContainerResponseContext responseContext)
            throws IOException {

        MultivaluedMap<String, Object> headers = responseContext.getHeaders();

        headers.add("Access-Control-Allow-Origin", "*");    
        headers.add("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT, OPTIONS");         
        headers.add("Access-Control-Allow-Headers", "X-Requested-With, Content-Type,");
    }

}

我对滤镜做了些微调整,然后将其注册到我的应用中

public class JaxRsApplication extends ResourceConfig{
    public JaxRsApplication() {

        //  register application resources - unmapped resources will throw exception
        register(AccountLocationResource.class);

        register(CORSResponseFilter.class);
    }

如何使用带有Jersey堆栈溢出问题的JAX-RS处理CORS提供了很好的答案。

您提供了指向Jersey 1的链接,但请确保使用的是哪个版本。

这样您就不必写

        .header("Access-Control-Allow-Origin","*")
        .header("Access-Control-Allow-Methods", "POST,GET,PUT,DELETE")
        .allow("OPTIONS")

对于每个请求。 过滤器将为您应用选项。

我注意到的另一件事

return Response.status(Response.Status.CREATED)// 201
        .entity("Location created") // <- entity() call here
        .header("Access-Control-Allow-Origin","*")
        .header("Access-Control-Allow-Methods", "POST,GET,PUT,DELETE")
        .allow("OPTIONS")
        .entity(object.toString()).build(); // <- one more entity() call here (not sure what effect it may have)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM