导入包报错The import org.springframework cannot be resolved
要不要买菜 人气:2刚开始学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 <https://img.qb5200.com/download-x/dependency> 7 <https://img.qb5200.com/download-x/dependencies>
注意,要放在<bulid>外面,添加后右键项目->Maven->Update Project就完成。
加载全部内容