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.
我正在为 Jersey 方法编写 CDI 拦截器。我可以在不向 Jersey 方法中添加带有 @Context 注释的参数的情况下接收 URL 吗?
在 JFS 中,FaseContext 中有一个静态方法可以帮助获取当前线程的请求(我可以从中获取 URL):
FaseContext.getCurrentInstance().getExternalContext().getRequest()
泽西岛有类似的东西吗?
您可以创建一个请求侦听器并在本地创建一个新线程,或者为其创建一个生产者。