Apache Tomcat 启动错误
启动 tomcat 时收到此错误:
16:27:21,027 ERROR [main] com.documentum.web.common.Trace - An error occurred during application intialization : org/eclipse/emf/ecore/resource/ResourceSet
java.lang.NoClassDefFoundError: org/eclipse/emf/ecore/resource/ResourceSet
at com.documentum.services.preset.impl.PackageDefinitionLoader.loadPackageDefinitionFromFile(PackageDefinitionLoader.java:117)
如何解决此问题?
I'm receiving this error when starting tomcat:
16:27:21,027 ERROR [main] com.documentum.web.common.Trace - An error occurred during application intialization : org/eclipse/emf/ecore/resource/ResourceSet
java.lang.NoClassDefFoundError: org/eclipse/emf/ecore/resource/ResourceSet
at com.documentum.services.preset.impl.PackageDefinitionLoader.loadPackageDefinitionFromFile(PackageDefinitionLoader.java:117)
How do I solve this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您缺少一个包含 org.eclipse.emf.ecore.resource.ResourceSet 类导入的 jar。
这很可能是缺少 org.eclipse.emf.common 插件 jar。
You are missing a jar which contains an import of the org.eclipse.emf.ecore.resource.ResourceSet class.
Most probably this is the org.eclipse.emf.common plugin jar which is missing.
在运行时找不到类
org.eclipse.emf.ecore.resource.ResourceSet
。您必须将所有 Documentum 依赖项添加到类路径中。The class
org.eclipse.emf.ecore.resource.ResourceSet
could not be found during runtime. You must add all Documentum dependencies to the classpath.