我有一个用例,需要知道请求来自何处
@ApplicationPath("/api/{store-name")
@ApplicationScoped
public class StoreApplication extends Application {
// Allow the container to scan for the annotations
}
其余接口我需要访问此path参数以进行记录。
说如果找不到资源,我们想知道是哪家商店提出要求。
我可以想到的一种方法是将其作为每个资源类中的路径参数并访问它的方法。但这看起来不像在每个资源类中都使用此{store-name}参数一样吗???