Spring bootの勉強中です。
MavenでSpringBootのプロジェクトをEclipseで作成しています。
SpringBootのリファレンスに以下の文があったのでまずはMainクラスを作成してみようと思いました。
The Application.java file would declare the main method, along with the basic @SpringBootApplication, as follows:
package com.example.myapplication; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
するとimportのorg.springframework.bootのところでエラーが出ていたので調べてみたところPOMファイルに依存関係を記述しなければいけなそうだったので、最重用とあった
<!-- 最重要。Spring Bootの諸々設定を引き継ぐための親情報。 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.2.1.RELEASE</version> </parent>
のところをコピーしてPOMファイルに記述しました。
この時点でビルドしてみたら<parent>のところにエラーのマークがついていて
プロジェクト・ビルド・エラー: Non-resolvable parent POM for jp.org:web:1.0.0-BUILD-SNAPSHOT: Failure to transfer org.springframework.boot:spring-boot-starter-parent:pom:1.2.1.RELEASE from https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. オリジナル・エラー: Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:1.2.1.RELEASE from/to central (https://repo.maven.apache.org/maven2): proxy.example.com and 'parent.relativePath' points at wrong local POM
というメッセージが出されていました。
どうすればorg.springframework.bootが使えるようになるでしょうか?
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。