Eclipse看到库但无法导入它

时间:2013-10-02 11:41:51

标签: java eclipse spring testing

我有奇怪的情况:

我写课:

...
    import org.springframework.test.context.web.WebAppConfiguration;
    //import org.springframework.test.web.servlet.MockMvc;

    @WebAppConfiguration
    @ContextConfiguration(locations = { "classpath:/test/BeanConfig.xml" })
    public class CandidateControllerTest {
...

如果我键入ctrl +鼠标左键并在WebAppConfiguration上移动光标,我看到:

enter image description here

但在我的编辑器中,我看到了:

enter image description here

如果我移动光标进行anotation我看到了消息:

  

WebAppConfiguration无法解析为类型

如何解决这个问题?

RESOLVE

我的应用程序有2个模块。弹簧测试的依赖性(测试范围)是在核心模块中编写的。当我在第二个模块中编写依赖项时 - 它已经成功了。

1 个答案:

答案 0 :(得分:1)

为项目类路径添加适当的依赖项,或者如果使用maven,可能会解决错误的spring版本。