質問編集履歴

2

追記

2018/12/22 07:03

投稿

chops
chops

スコア10

test CHANGED
File without changes
test CHANGED
@@ -147,3 +147,85 @@
147
147
 
148
148
 
149
149
  どうぞよろしくお願いいたします。
150
+
151
+
152
+
153
+ 追記
154
+
155
+ ---
156
+
157
+ gradle.buildについては以下に示します。
158
+
159
+ ```
160
+
161
+ buildscript {
162
+
163
+ ext {
164
+
165
+ springBootVersion = '2.1.1.RELEASE'
166
+
167
+ }
168
+
169
+ repositories {
170
+
171
+ mavenCentral()
172
+
173
+ }
174
+
175
+ dependencies {
176
+
177
+ classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
178
+
179
+ }
180
+
181
+ }
182
+
183
+
184
+
185
+ apply plugin: 'java'
186
+
187
+ apply plugin: 'eclipse'
188
+
189
+ apply plugin: 'org.springframework.boot'
190
+
191
+ apply plugin: 'io.spring.dependency-management'
192
+
193
+
194
+
195
+ group = 'com.hashin'
196
+
197
+ version = '0.0.1-SNAPSHOT'
198
+
199
+ sourceCompatibility = 1.8
200
+
201
+
202
+
203
+ repositories {
204
+
205
+ mavenCentral()
206
+
207
+ }
208
+
209
+
210
+
211
+
212
+
213
+ dependencies {
214
+
215
+ compile('nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.3.0')
216
+
217
+ implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
218
+
219
+ implementation('org.springframework.boot:spring-boot-starter-web')
220
+
221
+ runtimeOnly('org.springframework.boot:spring-boot-devtools')
222
+
223
+ runtimeOnly('mysql:mysql-connector-java')
224
+
225
+ testImplementation('org.springframework.boot:spring-boot-starter-test')
226
+
227
+ }
228
+
229
+
230
+
231
+ ```

1

変更

2018/12/22 07:02

投稿

chops
chops

スコア10

test CHANGED
File without changes
test CHANGED
@@ -38,7 +38,7 @@
38
38
 
39
39
  <div layout:fragment="content">
40
40
 
41
- <div>index</div>
41
+ <div>aaa</div>
42
42
 
43
43
  <div>bbb</div>
44
44