如何在应用程序级别添加动态REST路径参数

时间:2019-03-14 15:27:20

标签: java rest restful-url path-parameter

我有一个用例,需要知道请求来自何处

@ApplicationPath("/api/{store-name")
@ApplicationScoped
public class StoreApplication extends Application {

    // Allow the container to scan for the annotations
}

其余接口我需要访问此path参数以进行记录。

说如果找不到资源,我们想知道是哪家商店提出要求。

我可以想到的一种方法是将其作为每个资源类中的路径参数并访问它的方法。但这看起来不像在每个资源类中都使用此{store-name}参数一样吗???

0 个答案:

没有答案