質問編集履歴

2

エラー内容の追記

2021/09/03 08:05

投稿

fjiboot
fjiboot

スコア0

test CHANGED
File without changes
test CHANGED
@@ -59,3 +59,101 @@
59
59
  pom.xml
60
60
 
61
61
  ![イメージ説明](df23a6b0216ee10da6a6406cce123181.png)
62
+
63
+
64
+
65
+ ```ここに言語を入力
66
+
67
+ <?xml version="1.0" encoding="UTF-8"?>
68
+
69
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
70
+
71
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
72
+
73
+ <modelVersion>4.0.0</modelVersion>
74
+
75
+ <parent>
76
+
77
+ <groupId>org.springframework.boot</groupId>
78
+
79
+ <artifactId>spring-boot-starter-parent</artifactId>
80
+
81
+ <version>2.5.4</version>
82
+
83
+ <relativePath/> <!-- lookup parent from repository -->
84
+
85
+ </parent>
86
+
87
+ <groupId>com.example</groupId>
88
+
89
+ <artifactId>demo</artifactId>
90
+
91
+ <version>0.0.1-SNAPSHOT</version>
92
+
93
+ <name>demo</name>
94
+
95
+ <description>Demo project for Spring Boot</description>
96
+
97
+ <properties>
98
+
99
+ <java.version>16</java.version>
100
+
101
+ </properties>
102
+
103
+ <dependencies>
104
+
105
+ <dependency>
106
+
107
+ <groupId>org.springframework.boot</groupId>
108
+
109
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
110
+
111
+ </dependency>
112
+
113
+ <dependency>
114
+
115
+ <groupId>org.springframework.boot</groupId>
116
+
117
+ <artifactId>spring-boot-starter-web</artifactId>
118
+
119
+ </dependency>
120
+
121
+
122
+
123
+ <dependency>
124
+
125
+ <groupId>org.springframework.boot</groupId>
126
+
127
+ <artifactId>spring-boot-starter-test</artifactId>
128
+
129
+ <scope>test</scope>
130
+
131
+ </dependency>
132
+
133
+ </dependencies>
134
+
135
+
136
+
137
+ <build>
138
+
139
+ <plugins>
140
+
141
+ <plugin>
142
+
143
+ <groupId>org.springframework.boot</groupId>
144
+
145
+ <artifactId>spring-boot-maven-plugin</artifactId>
146
+
147
+ </plugin>
148
+
149
+ </plugins>
150
+
151
+ </build>
152
+
153
+
154
+
155
+ </project>
156
+
157
+
158
+
159
+ ```

1

エラー内容の追記

2021/09/03 08:05

投稿

fjiboot
fjiboot

スコア0

test CHANGED
File without changes
test CHANGED
@@ -43,3 +43,19 @@
43
43
  ・eclipse2021(fulledition)
44
44
 
45
45
  ・javaSE16
46
+
47
+
48
+
49
+
50
+
51
+ ### 追加情報
52
+
53
+ エラー内容
54
+
55
+ ![イメージ説明](2100df531ed6f05ff0c80d70dfd6eccf.png)
56
+
57
+
58
+
59
+ pom.xml
60
+
61
+ ![イメージ説明](df23a6b0216ee10da6a6406cce123181.png)