Referenced classpath provider does not exist: org.maven.ide.eclipse.launchconfig

在Eclipse中运行一个之前可以run成功的Junit Test的时候,弹出了一个对话框并显示异常信息是:Referenced classpath provider does not exist: org.maven.ide.eclipse.launchconfig。


Referenced classpath provider does not exist: org.maven.ide.eclipse.launchconfig_第1张图片
 

 

官方给出的解释是:It’s probably because your Run Configuration was created on an old project, and has bad entries in the Classpath section. The solution is to delete the Run Configuration and create a new one

 

即可能的的原因是你之前在一个老的project中创建了一个这个Unit test。解决的方法是在Eclipse删掉相关的Run Configuration. 联想到我自己的情况,我是在Eclipse 3.6中创建了一个project,在该project中有一个Unit test.然后后来我换了另一个eclipse,即eclipse4.0,这样才出现错误的。于是我也按照官方的说法,去删掉Run Configurtion中的相关Unit Test,然后再重新run的时候就成功了。

 

怎样删掉Run Configuration中的Junit Test?

1. 点击Eclipse Tab上的Run按钮

 

2. 点击RunConfiguration,然后点击左上角的X按钮删除。


Referenced classpath provider does not exist: org.maven.ide.eclipse.launchconfig_第2张图片
 

3. 重新在新的Eclipse中 Clean Projct,然后再重新run该Unit test即可。

你可能感兴趣的:(eclipse,maven,exception)