質問編集履歴
1
pom.xmlの内容記述
title
CHANGED
File without changes
|
body
CHANGED
@@ -110,6 +110,70 @@
|
|
110
110
|
}
|
111
111
|
}
|
112
112
|
```
|
113
|
+
以下、pom.xmlです。
|
114
|
+
```xml
|
115
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
116
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
117
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
118
|
+
<modelVersion>4.0.0</modelVersion>
|
119
|
+
|
120
|
+
<groupId>com.example</groupId>
|
121
|
+
<artifactId>s</artifactId>
|
122
|
+
<version>0.0.1-SNAPSHOT</version>
|
123
|
+
<packaging>jar</packaging>
|
124
|
+
|
125
|
+
<name>s</name>
|
126
|
+
<description>Demo project for Spring Boot</description>
|
127
|
+
|
128
|
+
<parent>
|
129
|
+
<groupId>org.springframework.boot</groupId>
|
130
|
+
<artifactId>spring-boot-starter-parent</artifactId>
|
131
|
+
<version>2.0.3.RELEASE</version>
|
132
|
+
<relativePath/> <!-- lookup parent from repository -->
|
133
|
+
</parent>
|
134
|
+
|
135
|
+
<properties>
|
136
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
137
|
+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
138
|
+
<java.version>1.8</java.version>
|
139
|
+
</properties>
|
140
|
+
|
141
|
+
<dependencies>
|
142
|
+
<dependency>
|
143
|
+
<groupId>org.springframework.boot</groupId>
|
144
|
+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
145
|
+
</dependency>
|
146
|
+
<dependency>
|
147
|
+
<groupId>org.springframework.boot</groupId>
|
148
|
+
<artifactId>spring-boot-starter-web</artifactId>
|
149
|
+
</dependency>
|
150
|
+
|
151
|
+
<dependency>
|
152
|
+
<groupId>org.springframework.boot</groupId>
|
153
|
+
<artifactId>spring-boot-starter-test</artifactId>
|
154
|
+
<scope>test</scope>
|
155
|
+
</dependency>
|
156
|
+
|
157
|
+
<dependency>
|
158
|
+
<groupId>org.hibernate</groupId>
|
159
|
+
<artifactId>hibernate-validator</artifactId>
|
160
|
+
<version>5.2.4.Final</version>
|
161
|
+
</dependency>
|
162
|
+
</dependencies>
|
163
|
+
|
164
|
+
<build>
|
165
|
+
<plugins>
|
166
|
+
<plugin>
|
167
|
+
<groupId>org.springframework.boot</groupId>
|
168
|
+
<artifactId>spring-boot-maven-plugin</artifactId>
|
169
|
+
</plugin>
|
170
|
+
</plugins>
|
171
|
+
</build>
|
172
|
+
|
173
|
+
|
174
|
+
</project>
|
175
|
+
|
176
|
+
```
|
113
177
|
### 試したこと
|
114
178
|
|
115
179
|
・sql文の変更など
|