如何在泽西使用jax-rs处理cors我正在开发一个java脚本客户端应用程序,在服务器端我需要处理CORS,所有我用JAX-RS与泽西一起编写的服务。我的代码:@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因此不允许进入。“请帮我做这件事。谢谢,并向菩萨问好
3 回答
慕雪6442864
TA贡献1812条经验 获得超5个赞
添加回答
举报
0/150
提交
取消