使用以下代码,serviceIdSegment
为null
而serviceId
不是null
。
class MySubResource {
@GET
@Path("{serviceId: .+}")
public Response readById(@PathParam String serviceId) {
// serviceId is not null
// why serviceIdSegment is null?
}
@PathParam("serviceId");
private PathSegment serviceIdSegment;
}
有人可以告诉我为什么吗?
答案 0 :(得分:0)
我注意到,当我试图回答时,这个问题是我的。
匹配根资源类后,readById
方法会被延迟评估。