导入包报错The import org.springframework cannot be resolved

  • 2020 年 3 月 28 日
  • 筆記

刚开始学spring框架时import org.springframework.context.support.ClassPathXmlApplicationContext;报错

我建的是maven项目,上网查了一下,在pom.xml文件加上下面代码即可

1   <dependencies>  2     <dependency>  3         <groupId>org.springframework</groupId>  4         <artifactId>spring-context</artifactId>  5         <version>4.3.17.RELEASE</version>  6     </dependency>  7   </dependencies>

注意,要放在<bulid>外面,添加后右键项目->Maven->Update Project就完成。