導入包報錯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就完成。