在学习Spring开发的时候每次都要手动导入依赖包,很浪费时间,后来发现可以通过pom.xml文件自动导入
首先打开pom.xml文件
在<dependencies></dependencies>代码中间添加以下代码
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.8</version>
</dependency>
一开始会报错,因为你的依赖库里没有这个依赖,这个时候点右上角的m标志他会自动导入你需要的依赖包
等进度条读取完就导入成功了