Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个带有 Jetty 实现的 HttpService 的 felix 容器。
Jetty 使用 Cross-Origin-Filter 支持 CORS,它通常在 web.xml 中配置,如这里所示
不幸的是,据我所知, Felix HTTPService 没有公开任何类型的东西,所以问题是:我如何将该配置获取到我的“felix 包装”码头?
谢谢!
我还没有想出如何突破 Felix 障碍以编程方式配置 Cross-Origin-Filters,但如果需要非常简单的过滤器,一种可能的解决方法是手动添加必填字段,如下所示:
resp.addHeader("Access-Control-Allow-Origin", "*");