如何仅扫描Spring中的特定文件夹?

时间:2014-06-20 15:03:54

标签: java eclipse spring spring-loaded

我想在Eclipse JUNO中配置spring-loaded。我已经下载了 spring-loaded.jar 并将其放在 eclipse.exe 所在的eclipse目录中。

我已打开jetty build.xml文件并将以下内容添加到目标中。

<jvmarg value="-javaagent:D:/eclipse/springloaded-1.2.0.RELEASE.jar"/>

现在,弹簧加载扫描甚至是我不想要的预定义库(包含在我的项目中的jar文件),因为我不会对它们进行任何更改。所以,我需要传递一个参数来扫描我的项目的自定义文件夹。我怎么能这样做?

当我只是包含上面一行时,我收到以下错误。

[artifact:mvn] constituent[0]: file:/D:/maven/lib/aether-api-0.9.0.M2.jar
[artifact:mvn] Exception in thread "main" java.lang.VerifyError: (class: org/eclipse/aether/util/repository/DefaultProxySelector, method: getProxy signature: (Lorg/eclipse/aether/repository/RemoteRepository;)Lorg/eclipse/aether/repository/Proxy;) Illegal use of nonvirtual function call

1 个答案:

答案 0 :(得分:-1)

在值的末尾添加“-noverify”选项(有些添加“-Dverify:none”)