1
spring-boot-starter-data-jpa
とspring-boot-starter-jdbc
の依存関係を追加しました。アーティファクト記述子の読み込みに失敗しました
私はjarファイルをダウンロードし、すべての依存関係のあるフォルダに手動で追加し、私が参照されるライブラリのように追加しましたが、助けにはならなかった「アーティファクト記述を読むことができませんでした...」:そして、私は問題を取得します。 誰かが私を助けることができますか?
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
ありがとう、この作品! :D –