允许在wicket 6.20中使用CORS

时间:2018-04-27 15:50:21

标签: java cors wicket

我在wicket网络应用程序中遇到了CORS(跨源资源共享)问题。 在本地网络中一切都很好。在线部署我的网络应用程序后,我在浏览器控制台中收到了以下错误。

No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

如何在我的服务上允许交叉来源? 我正在使用wicket 6.20。

1 个答案:

答案 0 :(得分:0)

您可以按建议的here

执行此操作
getCurrentWebResponse().addHeader("Access-Control-Allow-Origin", "http://localhost:8080");

希望这有助于解决您的问题!