找不到依赖项 'com.h2database:h2:1.4.200',无法读取 com.h2database:h2:jar 的工件描述符
Posted
技术标签:
【中文标题】找不到依赖项 \'com.h2database:h2:1.4.200\',无法读取 com.h2database:h2:jar 的工件描述符【英文标题】:Dependency 'com.h2database:h2:1.4.200' not found, Failed to read artifact descriptor for com.h2database:h2:jar找不到依赖项 'com.h2database:h2:1.4.200',无法读取 com.h2database:h2:jar 的工件描述符 【发布时间】:2021-01-13 07:55:25 【问题描述】:我正在使用 Springboot 构建后端应用程序支持,并尝试使用 Spring 内置的 h2 数据库。但是,当我在 pom.xml 中添加以下 h2 依赖项时,它会出错。
错误
未能读取 com.h2database:h2:jar:1.4.200 的工件描述符 未找到依赖项 'com.h2database:h2:1.4.200'
pom.xml
4.0.0 org.springframework.boot spring-boot-starter-parent 2.3.3.发布 com.krishnaQuiz 克里希纳测验 0.0.1-快照 克里希纳测验 克里希纳测验用户界面
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>2.3.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
=============================
请帮忙
【问题讨论】:
您是否在application.properties
文件中配置了h2 数据库,例如spring.datasource.url=jdbc:h2:mem:testdb
等?
是的,下面是application.properties的内容============================= spring.datasource .url=jdbc:h2:mem:testdb spring.datasource.driverClassName=org.h2.Driver spring.datasource.username=sa spring.datasource.password= spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
尝试删除<scope>runtime</scope>
并检查它
没用。
嗨,你可以试试这个吗? [链接] (***.com/questions/6642146/…)!
【参考方案1】:
我遇到了同样的问题...在 pom.xml 中指定 H2 版本并等待更新。
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
<scope>runtime</scope>
</dependency>
测试文件会出现错误,如果你用eclipse的话,打开它并更新导入“CTRL+SHIFT+O”即可。
【讨论】:
以上是关于找不到依赖项 'com.h2database:h2:1.4.200',无法读取 com.h2database:h2:jar 的工件描述符的主要内容,如果未能解决你的问题,请参考以下文章