为什么有红色的线,报错?
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.imooc</groupId>
<artifactId>maven-first</artifactId>
<version>1.0.0-RELEASE</version>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.47</version>
</dependency>
<dependency>
<groupId>com.belerweb</groupId>
<artifactId>pinyin4j</artifactId>
<version>2.5.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.1.1.RELEASE</version>
</dependency>
</dependencies>
</project>
正在回答 回答被采纳积分+1
同学你好,根据贴出的报错信息
无法获取org.springframework:spring-expression:jar:5.1.1.RELEASE 这个对应的jar包。
这个可能是spring-expression:jar下载到本地仓库中时没有下载完成,出现问题,导致引用出现问题,建议同学去本地仓库中,查找.m2\repository下的org文件夹,打开后找到springframework文件夹,然后将该目录下的文件删除,在pom.xml文件中重新引入依赖再试试。
Ps:找目录的时候可以在C盘搜索.m2这个文件夹,然后在.m2\repository文件夹下搜索org文件夹
如果我的回答解决了你的疑惑,请采纳。祝:学习愉快~
- 参与学习 人
- 提交作业 357 份
- 解答问题 8016 个
本阶段将带你学习MySQL数据库,JDBC接口,MyBatis框架等,带你掌握的数据的存放和管理。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星