1

我正在尝试使用 java 连接 mongodb,但出现以下异常

Apr 3, 2013 10:55:41 AM com.sun.jersey.spi.container.ContainerResponse mapMappableContainerException 
SEVERE: The exception contained within MappableContainerException could not be mapped to a response, re-throwing to the HTTP container java.lang.NoClassDefFoundError: com/mongodb/DB
at prime.task.TaskServices.save(TaskServices.java:49)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)

如果有人告诉我如何解决这个问题,这对我很有帮助

4

1 回答 1

1

它表明您的 IDE 没有正确引用 mongodb java 驱动程序,请尝试使用不同的驱动程序版本,清除 eclipse 项目,或在不同的工作区中创建项目,或在控制台添加 -cp 命令行参数手动运行项目。

问候, 莫西

于 2013-05-01T00:51:47.617 回答