我正在开发一个 java 脚本客户端应用程序,在服务器端我需要处理 CORS,所有我用 JAX-RS 和 JERSEY 编写的服务。 我的代码:
@CrossOriginResourceSharing(allowAllOrigins = true)
@GET
@Path("/readOthersCalendar")
@Produces("application/json")
public Response readOthersCalendar(String dataJson) throws Exception {
//my code. Edited by gimbal2 to fix formatting
return Response.status(status).entity(jsonResponse).header("Access-Control-Allow-Origin", "*").build();
}
到目前为止,我得到的错误没有“访问控制-允许-起源”头是在请求的资源。因此,原产地‘ http://localhost:8080’不能进入。」
请协助我。
谢谢 佛陀普尼斯