导入无法解决错误

时间:2013-09-20 13:49:31

标签: java spring spring-mvc web

在我的Spring网络应用程序中,我尝试导入以下导入以将我的类注释为@Configuration,将方法注释为@Bean

import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.Configuration;

但是我收到导入无法解决的编译时错误。

我是否需要为这些导入添加任何特定的jar?

3 个答案:

答案 0 :(得分:1)

使用Jar Finder,按class name搜索

 org.springframework.context.annotation.Bean
 org.springframework.context.annotation.Configuration

然后将必要的jar添加到构建路径中。

答案 1 :(得分:1)

您需要在类路径中添加 spring-context

您可以找到图书馆herehere

答案 2 :(得分:0)

确保Spring jar存在并且它们作为库包含在项目中。