嗨,我的 Web 服务 REST 出现异常。我知道 MappableContainerException 只是 Jersey 使用的一个包装异常,如果底层代码抛出了一些不可映射到响应的东西(在我的例子中是 NoClassDefFoundError)。但我不知道如何解决它。
com.sun.jersey.spi.container.ContainerResponse mapMappableContainerException
GRAVE: The exception contained within MappableContainerException could not be mapped to a response, re-throwing to the HTTP container
java.lang.NoClassDefFoundError: com/rest/util/Model
模型类存在于另一个 maven 项目“REST-Util”中,我将它集成到我的 pom.xml 中,如下所示:
<dependency>
<groupId>com.rest.util</groupId>
<artifactId>REST-Util</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
如果您能帮我解决这个问题,我将不胜感激。提前致谢