###前提・実現したいこと
こちらのサイト等を参考にSTSとSpringBootを使ってプログラムを作成しています。
- メニューの「ファイル(F)」→「新規(N)」→「Springスターター・プロジェクト」から、参考サイトの手順に従って作成したのですが、「実行(R)」内に「SpringBootアプリケーション」が存在しません。
実行メニューは何を基に表示・非表示が決まるのでしょうか?
- pom.xmlでエラーが発生しているのですが、それが原因でしょうか?
詳細は以下の通りです。
###問題1
「実行(R)」内は以下の通りで、「SpringBootアプリケーション」が存在しません。
]
###問題2
pom.xmlで以下のエラーが発生しています。
プロジェクト・ビルド・エラー: Non-resolvable parent POM for com.example:helloSpringBootWeb:0.0.1-SNAPSHOT: Failure to transfer org.springframework.boot:spring-boot-starter-parent:pom:2.3.2.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:2.3.2.RELEASE from/ to central (https://repo.maven.apache.org/maven2): repo.maven.apache.org and 'parent.relativePath' points at no local POM
pom.xmlの全文を以下に示します。※変更していません。
pom
1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4 <modelVersion>4.0.0</modelVersion> 5 <parent> 6 <groupId>org.springframework.boot</groupId> 7 <artifactId>spring-boot-starter-parent</artifactId> 8 <version>2.3.2.RELEASE</version> 9 <relativePath/> <!-- lookup parent from repository --> 10 </parent> 11 <groupId>com.example</groupId> 12 <artifactId>helloSpringBootWeb</artifactId> 13 <version>0.0.1-SNAPSHOT</version> 14 <name>helloSpringBootWeb</name> 15 <description>Demo project for Spring Boot</description> 16 17 <properties> 18 <java.version>11</java.version> 19 </properties> 20 21 <dependencies> 22 <dependency> 23 <groupId>org.springframework.boot</groupId> 24 <artifactId>spring-boot-starter-thymeleaf</artifactId> 25 </dependency> 26 <dependency> 27 <groupId>org.springframework.boot</groupId> 28 <artifactId>spring-boot-starter-web</artifactId> 29 </dependency> 30 31 <dependency> 32 <groupId>org.springframework.boot</groupId> 33 <artifactId>spring-boot-starter-test</artifactId> 34 <scope>test</scope> 35 <exclusions> 36 <exclusion> 37 <groupId>org.junit.vintage</groupId> 38 <artifactId>junit-vintage-engine</artifactId> 39 </exclusion> 40 </exclusions> 41 </dependency> 42 </dependencies> 43 44 <build> 45 <plugins> 46 <plugin> 47 <groupId>org.springframework.boot</groupId> 48 <artifactId>spring-boot-maven-plugin</artifactId> 49 </plugin> 50 </plugins> 51 </build> 52 53</project>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。