質問編集履歴
4
画像をソース内に入れていた
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,17 +10,15 @@
|
|
10
10
|
|
11
11
|
### 発生している問題・エラーメッセージ
|
12
12
|
|
13
|
-
|
14
|
-
|
15
|
-
```
|
16
|
-
|
17
13
|
ブラウザ側
|
18
14
|
|
19
15
|
![イメージ説明](f5fc10c590f536a2f2e05f85634c5723.png)
|
20
16
|
|
17
|
+
ソース側
|
21
18
|
|
22
19
|
|
20
|
+
|
23
|
-
|
21
|
+
```
|
24
22
|
|
25
23
|
1行目:スーパークラス "javax.servlet.http.HttpServlet" が Java ビルド・パスで見つかりませんでした
|
26
24
|
|
3
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,20 +1,10 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
|
-
|
3
|
+
springframeworkを取り込みたいのですが、
|
4
4
|
|
5
|
-
|
5
|
+
下記ソースコードを実行したところ、次のようなエラーが出てしまいます。
|
6
6
|
|
7
|
-
|
7
|
+
ご教授お願いします。
|
8
|
-
|
9
|
-
Spring Bootバージョン:2.2.2
|
10
|
-
|
11
|
-
で新規Springスターター・プロジェクトを作成したところ、pom.xmlファイルでエラーが起こりました。
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
同じような症状の方を参考にしても解決できず、質問しました。どうかよろしくお願いします。
|
16
|
-
|
17
|
-
|
18
8
|
|
19
9
|
|
20
10
|
|
@@ -24,9 +14,17 @@
|
|
24
14
|
|
25
15
|
```
|
26
16
|
|
27
|
-
|
17
|
+
ブラウザ側
|
28
18
|
|
19
|
+
![イメージ説明](f5fc10c590f536a2f2e05f85634c5723.png)
|
20
|
+
|
21
|
+
|
22
|
+
|
29
|
-
|
23
|
+
ソース側
|
24
|
+
|
25
|
+
1行目:スーパークラス "javax.servlet.http.HttpServlet" が Java ビルド・パスで見つかりませんでした
|
26
|
+
|
27
|
+
5行目:"http://www.springframework.org/tags" のタグ・ライブラリー記述子が見つかりません
|
30
28
|
|
31
29
|
|
32
30
|
|
@@ -36,103 +34,43 @@
|
|
36
34
|
|
37
35
|
```
|
38
36
|
|
39
|
-
<
|
37
|
+
<!doctype html>
|
40
38
|
|
41
|
-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
42
|
-
|
43
|
-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
44
|
-
|
45
|
-
<modelVersion>4.0.0</modelVersion>
|
46
|
-
|
47
|
-
<parent> <!--ここでエラーの赤線 -->
|
48
|
-
|
49
|
-
<groupId>org.springframework.boot</groupId>
|
50
|
-
|
51
|
-
<artifactId>spring-boot-starter-parent</artifactId>
|
52
|
-
|
53
|
-
<version>2.2.2.RELEASE</version>
|
54
|
-
|
55
|
-
<relativePath/> <!-- lookup parent from repository -->
|
56
|
-
|
57
|
-
</parent>
|
58
|
-
|
59
|
-
<groupId>com.example</groupId>
|
60
|
-
|
61
|
-
<artifactId>demo-7</artifactId>
|
62
|
-
|
63
|
-
<version>0.0.1-SNAPSHOT</version>
|
64
|
-
|
65
|
-
|
39
|
+
<html lang="ja">
|
66
|
-
|
67
|
-
<description>Demo project for Spring Boot</description>
|
68
40
|
|
69
41
|
|
70
42
|
|
71
|
-
|
43
|
+
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
72
44
|
|
73
|
-
|
45
|
+
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
74
46
|
|
75
|
-
|
47
|
+
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
76
48
|
|
77
49
|
|
78
50
|
|
79
|
-
|
51
|
+
<head>
|
80
52
|
|
81
|
-
|
53
|
+
<meta charset="utf-8">
|
82
54
|
|
83
|
-
|
55
|
+
<title>ログイン</title>
|
84
56
|
|
85
|
-
|
57
|
+
</head>
|
86
58
|
|
87
|
-
|
59
|
+
<body>
|
88
60
|
|
61
|
+
<form action="login" method="post">
|
89
62
|
|
63
|
+
<div>
|
90
64
|
|
91
|
-
|
65
|
+
<input type="submit" value="ログイン">
|
92
66
|
|
93
|
-
|
67
|
+
</div>
|
94
68
|
|
95
|
-
|
69
|
+
</form>
|
96
70
|
|
97
|
-
|
71
|
+
</body>
|
98
72
|
|
99
|
-
<exclusions>
|
100
|
-
|
101
|
-
<exclusion>
|
102
|
-
|
103
|
-
<groupId>org.junit.vintage</groupId>
|
104
|
-
|
105
|
-
<artifactId>junit-vintage-engine</artifactId>
|
106
|
-
|
107
|
-
</exclusion>
|
108
|
-
|
109
|
-
</exclusions>
|
110
|
-
|
111
|
-
</dependency>
|
112
|
-
|
113
|
-
</dependencies>
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
<build>
|
118
|
-
|
119
|
-
<plugins>
|
120
|
-
|
121
|
-
<plugin>
|
122
|
-
|
123
|
-
<groupId>org.springframework.boot</groupId>
|
124
|
-
|
125
|
-
<artifactId>spring-boot-maven-plugin</artifactId>
|
126
|
-
|
127
|
-
</plugin>
|
128
|
-
|
129
|
-
</plugins>
|
130
|
-
|
131
|
-
|
73
|
+
</html>
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
</project>
|
136
74
|
|
137
75
|
```
|
138
76
|
|
@@ -140,13 +78,9 @@
|
|
140
78
|
|
141
79
|
### 試したこと
|
142
80
|
|
81
|
+
最初はsunでもエラーが出ていましたが、jarファイルをlibに入れたら直りました。
|
143
82
|
|
144
83
|
|
145
|
-
・ローカルリポジトリ削除
|
146
|
-
|
147
|
-
・<version>2.2.2.RELEASE</version>のバージョンを下げる→一瞬エラーは消えるが、実行POMのロードが終わると再びエラーに
|
148
|
-
|
149
|
-
・[WindowsにSpring Tool Suiteを導入する](https://qiita.com/segur/items/4cd283d9763a1953f336) のMavenの設定(入れたバージョンは3.6.3です)
|
150
84
|
|
151
85
|
|
152
86
|
|
2
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,32 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
|
-
|
3
|
+
Spring Tool Suite 4 にて
|
4
|
+
|
5
|
+
型:Maven
|
6
|
+
|
7
|
+
Javaバージョン:13
|
8
|
+
|
9
|
+
Spring Bootバージョン:2.2.2
|
10
|
+
|
11
|
+
で新規Springスターター・プロジェクトを作成したところ、pom.xmlファイルでエラーが起こりました。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
同じような症状の方を参考にしても解決できず、質問しました。どうかよろしくお願いします。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
### 発生している問題・エラーメッセージ
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
プロジェクト・ビルド・エラー: Non-resolvable parent POM for com.example:demo-7:0.0.1-SNAPSHOT: Failure to transfer org.springframework.boot:spring-boot-starter-parent:pom:2.2.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.2.2.RELEASE from/to central (https://repo.maven.apache.org/maven2): Transfer failed for https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/2.2.2.RELEASE/spring-boot-starter-parent-2.2.2.RELEASE.pom and 'parent.relativePath' points at no local POM
|
28
|
+
|
29
|
+
```
|
4
30
|
|
5
31
|
|
6
32
|
|
@@ -10,62 +36,128 @@
|
|
10
36
|
|
11
37
|
```
|
12
38
|
|
39
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
13
40
|
|
41
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
14
42
|
|
15
|
-
|
43
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
16
44
|
|
17
|
-
<
|
45
|
+
<modelVersion>4.0.0</modelVersion>
|
18
46
|
|
19
|
-
<
|
47
|
+
<parent> <!--ここでエラーの赤線 -->
|
20
48
|
|
21
|
-
<
|
49
|
+
<groupId>org.springframework.boot</groupId>
|
22
50
|
|
51
|
+
<artifactId>spring-boot-starter-parent</artifactId>
|
52
|
+
|
53
|
+
<version>2.2.2.RELEASE</version>
|
54
|
+
|
55
|
+
<relativePath/> <!-- lookup parent from repository -->
|
56
|
+
|
57
|
+
</parent>
|
58
|
+
|
59
|
+
<groupId>com.example</groupId>
|
60
|
+
|
61
|
+
<artifactId>demo-7</artifactId>
|
62
|
+
|
63
|
+
<version>0.0.1-SNAPSHOT</version>
|
64
|
+
|
65
|
+
<name>demo-7</name>
|
66
|
+
|
23
|
-
<
|
67
|
+
<description>Demo project for Spring Boot</description>
|
24
68
|
|
25
69
|
|
26
70
|
|
27
|
-
|
71
|
+
<properties>
|
28
72
|
|
29
|
-
|
73
|
+
<java.version>13</java.version>
|
30
74
|
|
31
|
-
|
75
|
+
</properties>
|
32
76
|
|
33
|
-
</head>
|
34
77
|
|
35
|
-
<body>
|
36
78
|
|
37
|
-
<
|
79
|
+
<dependencies>
|
38
80
|
|
39
|
-
<d
|
81
|
+
<dependency>
|
40
82
|
|
41
|
-
|
83
|
+
<groupId>org.springframework.boot</groupId>
|
42
84
|
|
43
|
-
|
85
|
+
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
44
86
|
|
45
|
-
|
87
|
+
</dependency>
|
46
88
|
|
47
|
-
</body>
|
48
89
|
|
90
|
+
|
91
|
+
<dependency>
|
92
|
+
|
93
|
+
<groupId>org.springframework.boot</groupId>
|
94
|
+
|
95
|
+
<artifactId>spring-boot-starter-test</artifactId>
|
96
|
+
|
97
|
+
<scope>test</scope>
|
98
|
+
|
99
|
+
<exclusions>
|
100
|
+
|
101
|
+
<exclusion>
|
102
|
+
|
103
|
+
<groupId>org.junit.vintage</groupId>
|
104
|
+
|
105
|
+
<artifactId>junit-vintage-engine</artifactId>
|
106
|
+
|
107
|
+
</exclusion>
|
108
|
+
|
109
|
+
</exclusions>
|
110
|
+
|
111
|
+
</dependency>
|
112
|
+
|
113
|
+
</dependencies>
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
<build>
|
118
|
+
|
119
|
+
<plugins>
|
120
|
+
|
121
|
+
<plugin>
|
122
|
+
|
123
|
+
<groupId>org.springframework.boot</groupId>
|
124
|
+
|
125
|
+
<artifactId>spring-boot-maven-plugin</artifactId>
|
126
|
+
|
127
|
+
</plugin>
|
128
|
+
|
129
|
+
</plugins>
|
130
|
+
|
49
|
-
</
|
131
|
+
</build>
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
</project>
|
50
136
|
|
51
137
|
```
|
52
138
|
|
53
139
|
|
54
140
|
|
55
|
-
###
|
141
|
+
### 試したこと
|
56
|
-
|
57
|
-
![上記ソースコード実行後](dd27f0c2504a4f7b7023b556c02125f6.png)
|
58
142
|
|
59
143
|
|
60
144
|
|
61
|
-
|
145
|
+
・ローカルリポジトリ削除
|
62
146
|
|
63
|
-
|
147
|
+
・<version>2.2.2.RELEASE</version>のバージョンを下げる→一瞬エラーは消えるが、実行POMのロードが終わると再びエラーに
|
148
|
+
|
149
|
+
・[WindowsにSpring Tool Suiteを導入する](https://qiita.com/segur/items/4cd283d9763a1953f336) のMavenの設定(入れたバージョンは3.6.3です)
|
64
150
|
|
65
151
|
|
66
152
|
|
67
153
|
### 補足情報(FW/ツールのバージョンなど)
|
68
154
|
|
155
|
+
Spring Tool Suite 4
|
156
|
+
|
157
|
+
Version: 4.4.2.RELEASE
|
69
158
|
|
70
159
|
|
160
|
+
|
161
|
+
jdk-13.0.1
|
162
|
+
|
71
|
-
|
163
|
+
apache-maven-3.6.3
|
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,18 +1,6 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
springframework
|
6
|
-
|
7
|
-
(例)PHP(CakePHP)で●●なシステムを作っています。
|
8
|
-
|
9
|
-
■■な機能を実装中に以下のエラーメッセージが発生しました。
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
4
|
|
17
5
|
|
18
6
|
|
@@ -20,7 +8,7 @@
|
|
20
8
|
|
21
9
|
|
22
10
|
|
23
|
-
```
|
11
|
+
```
|
24
12
|
|
25
13
|
|
26
14
|
|
@@ -72,9 +60,7 @@
|
|
72
60
|
|
73
61
|
### 試したこと
|
74
62
|
|
75
|
-
最初はsun
|
63
|
+
最初はsunでも躓きましたが、jarファイル追加で直せました。
|
76
|
-
|
77
|
-
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>でも同様の現象が起こりました。
|
78
64
|
|
79
65
|
|
80
66
|
|
@@ -82,4 +68,4 @@
|
|
82
68
|
|
83
69
|
|
84
70
|
|
85
|
-
|
71
|
+
サーバーはPivotal 4.0とTomcat9.0で試しました
|