0

我正在使用 m2eclipse。

我在 pom.xml 中正确配置了 jetty-maven 插件。

当我尝试通过 CMD 执行它的工作正常。没有错误

而当我尝试通过 Eclipse 执行时,

$    java.lang.NoClassDefFoundError: MAVEN_OPTS=-Xdebug -Xnoagent -Djava/compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspended=y,address=8000
Exception in thread "main"      $

我缺少一些 Jetty - Eclipse 配置。有人可以就此提出建议。

D0 你发现这里有任何错误,

MAVEN_OPTS="-XX:MaxPermSize=256M -Xmx512M -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=y"

4

1 回答 1

0

我找到了....错误出在 VM 参数中。如果您的 VM 参数拼写错误或其他什么,它会引发 filenotfound 错误。

MAVEN_OPTS="-XX:MaxPermSize=256M -Xmx512M -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=y"

实际的:

-XX:MaxPermSize=256M -Xmx512M -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=y

当你进入 Eclipse 时,没有 MAVEN_OPTS 在 VM 参数中没有引号......

于 2012-08-23T10:02:22.880 回答