0

我最近将 Lombok(版本 0.11.0)安装到我的 Eclipse Indigo 安装中,现在我在 Eclipse 中的所有项目都不再从运行和调试启动。

当我尝试运行一个项目时,我得到的错误如下

Usage: javaw [-options] class [args...]
       (to execute a class)
or  javaw [-options] -jar jarfile [args...]
       (to execute a jar file)

where options include:
-client   to select the "client" VM
-server   to select the "server" VM
-hotspot      is a synonym for the "client" VM  [deprecated]
              The default VM is client.

-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
              A ; separated list of directories, JAR archives,
              and ZIP archives to search for class files.
-D<name>=<value>
              set a system property
-verbose[:class|gc|jni]
              enable verbose output
-version      print product version and exit
-version:<value>
              require the specified version to run
-showversion  print product version and continue
-jre-restrict-search | -jre-no-restrict-search
              include/exclude user private JREs in the version search
-? -help      print this help message
-X            print help on non-standard options
-ea[:<packagename>...|:<classname>]
-enableassertions[:<packagename>...|:<classname>]
              enable assertions
-da[:<packagename>...|:<classname>]
-disableassertions[:<packagename>...|:<classname>]
              disable assertions
-esa | -enablesystemassertions
              enable system assertions
-dsa | -disablesystemassertions
              disable system assertions
-agentlib:<libname>[=<options>]
              load native agent library <libname>, e.g. -agentlib:hprof
                see also, -agentlib:jdwp=help and -agentlib:hprof=help
-agentpath:<pathname>[=<options>]
              load native agent library by full pathname
-javaagent:<jarpath>[=<options>]
              load Java programming language agent, see java.lang.instrument
-splash:<imagepath>
              show splash screen with specified image

这向我表明它找不到我正在运行的项目的主类文件,但它在运行和调试配置中正确引用了该项目,该文件在项目中并且我检查了 /bin 文件夹以确保班级就在那里(就是这样)。

我唯一能想到的可能会或可能不会导致问题的是,在安装 Lombok 之后,/bin 文件夹没有包含正确的内容,而是在其中构建了我的 JUnit 测试用例。

我已经多次清理了我的整个项目集并卸载/重新安装了 Lombok。我已经重置了我的电脑,但仍然没有乐趣。Eclipse 使用 jdk 1.6.30 运行。

更新:问题似乎在于该项目是否引用了另一个使用 Lombok 的项目,或者该项目直接使用 Lombok。删除项目对 Lombok 的引用允许项目在 Eclipse 中正常执行。

4

0 回答 0