对于org.glassfish.jersey.filter.LoggingFilter类,必须将什么依赖项添加到pom.xml中?我尝试从org.glassfish.jersey.core中添加artifactId jersey-common和jersey-client,但是在该类中不存在。
答案 0 :(得分:3)
从Jersey 2.23开始,您应该使用LoggingFeature
而不是LoggingFilter
(在Jersey 2.26中已将其删除)。确保您在类路径中有jersey-common
工件。
有关详细信息,请参见documentation。