哪个jar文件包含jersey LoggingFeature类?

时间:2016-10-27 16:53:48

标签: java logging jersey

我正在尝试找到要添加到项目中的org.glassfish.jersey.logging.LoggingFeature类。关于这个课程的Javadoc在这里找到:https://jersey.java.net/nonav/apidocs/latest/jersey/org/glassfish/jersey/logging/LoggingFeature.html
它不在jersey-common.jar中。哪个jar文件包含它?

3 个答案:

答案 0 :(得分:4)

你可以在罐子里找到这个类泽西Commmons。

Maven存储库:
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/2.23.2

答案 1 :(得分:1)

尝试此搜索:http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22org.glassfish.jersey.logging.LoggingFeature%22

我在这两个依赖项中找到了这个类:

<dependency>
    <groupId>org.glassfish.jersey.bundles</groupId>
    <artifactId>jaxrs-ri</artifactId>
    <version>2.24</version>
</dependency>

<dependency>
    <groupId>org.glassfish.jersey.core</groupId>
    <artifactId>jersey-common</artifactId>
    <version>2.24</version>
</dependency>

事实上,jaxrs-ri取决于jersey-common

您使用的是哪个jersey-common版本?

答案 2 :(得分:0)

当我需要查找包含特定类的jar时,我喜欢使用grepcode.com。

http://grepcode.com/search/?query=org.glassfish.jersey.logging.LoggingFeature