Jersey - The @Context annotation for injection. How does it work?(Jersey - 用于注入的 @Context 注释.它是如何工作的?)
问题描述
I was looking at a good REST tutorial using Jersey.
Down the page, there is a web resource that is built which is entitled TodoResource
which itself contains two instance variables
public class TodoResource {
@Context
UriInfo uriInfo;
@Context
Request request;
String id;
public TodoResource(UriInfo uriInfo, Request request, String id) {
this.uriInfo = uriInfo;
this.request = request;
this.id = id;
}
}
I was wondering exactly how the UriInfo
and Request
instance variables are initialized? I know that using the @Context
annotation allows for information to be injected, but at what point does this happen? Will this be handled automatically by Jersey?
Jersey doesn't modify the class, but it creates it on every request from the client.
After the class constructor was invoked, the context fields are injected.
(Should you try to access those fields inside the constructor, they will be null
)
In your case, the class wouldn't need a specific constructor, so just:
public TodoResource () {
// in most cases the ctor stays empty.
// don't do much work here, remember: the ctor is invoked at every client request
}
But inside methods (which represent web-resources) annotated with @POST, @GET, ...
you would have access to context fields.
这篇关于Jersey - 用于注入的 @Context 注释.它是如何工作的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Jersey - 用于注入的 @Context 注释.它是如何工作的?


- Jersey REST 客户端:发布多部分数据 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01