我正在使用RestEasy客户端框架并使用以下代码WARN
:
RegisterBuiltin.register(ResteasyProviderFactory.getInstance());
// [WARN] org.jboss.resteasy.logging.impl.Log4jLogger-103: NoClassDefFoundError:
// Unable to load builtin provider:
// org.jboss.resteasy.plugins.providers.DocumentProvider
根据GrepCode,此类应位于resteasy-jaxrs
模块中。这只是一个警告,但我在Google上只发现了一些提示,并想知道我是否应该忽略它或找到解决方案,因为它只是一个警告,而不是CNFE。代码如下工作没有问题。
<dependencyManagement>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-bom</artifactId>
<version>2.3.1.GA</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
</dependency>
</dependencies>
答案 0 :(得分:2)
要避免此警告,请尝试以下操作:
public class SomeClass
{
static {ResteasyProviderFactory.setRegisterBuiltinByDefault(false);}
public static void main(String[] args) {}
}
更新根据http://docs.jboss.org/resteasy/2.0.0.GA/userguide/html/Migration_from_older_versions.html,不再需要方法调用RegisterBuiltin.register(ResteasyProviderFactory.getInstance());
!