質問編集履歴
2
質問内容の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
JAVA(Spring
|
5
|
+
JAVA(SpringToolSuite4でショッピングカート風なシステムを作っています。
|
6
6
|
|
7
7
|
履歴を表示したいのですが、<tbody>内の構文がうまくかけず、すべての履歴が表示されず、表示しても最新で購入したもののみの履歴しか表示されません。
|
8
8
|
|
@@ -360,7 +360,7 @@
|
|
360
360
|
|
361
361
|
|
362
362
|
|
363
|
-
Spring
|
363
|
+
SpringToolSite4(sts4.5.1)を使用
|
364
364
|
|
365
365
|
java側でのforEachがきちんと機能せず、webのコンソールで確認した結果
|
366
366
|
|
1
質問内容の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
JAVA(SpringBoot4.
|
5
|
+
JAVA(SpringBoot(sts4.5.1)でショッピングカート風なシステムを作っています。
|
6
6
|
|
7
7
|
履歴を表示したいのですが、<tbody>内の構文がうまくかけず、すべての履歴が表示されず、表示しても最新で購入したもののみの履歴しか表示されません。
|
8
8
|
|
@@ -44,6 +44,194 @@
|
|
44
44
|
|
45
45
|
```
|
46
46
|
|
47
|
+
HistoryDto.java
|
48
|
+
|
49
|
+
```java
|
50
|
+
|
51
|
+
public class HistoryDto {
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
private long id;
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
private long userId;
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
private long goodsId;
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
private String goodsName;
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
private long itemCount;
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
private long total;
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
private String createdAt;
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
public HistoryDto() {}
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
public HistoryDto(Purchase entity) {
|
88
|
+
|
89
|
+
this.id = entity.getId();
|
90
|
+
|
91
|
+
this.userId = entity.getUserId();
|
92
|
+
|
93
|
+
this.goodsId = entity.getGoodsId();
|
94
|
+
|
95
|
+
this.goodsName = entity.getGoodsName();
|
96
|
+
|
97
|
+
this.itemCount = entity.getItemCount();
|
98
|
+
|
99
|
+
this.total = entity.getTotal();
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
Timestamp d =entity.getCreatedAt();
|
104
|
+
|
105
|
+
SimpleDateFormat f = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
|
106
|
+
|
107
|
+
this.createdAt = f.format(d);
|
108
|
+
|
109
|
+
}
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
public HistoryDto(long id, long userId, long goodsId, String goodsName,long itemCount,long total,String createdAt) {
|
114
|
+
|
115
|
+
this.id = id;
|
116
|
+
|
117
|
+
this.userId = userId;
|
118
|
+
|
119
|
+
this.goodsId = goodsId;
|
120
|
+
|
121
|
+
this.goodsName = goodsName;
|
122
|
+
|
123
|
+
this.itemCount = itemCount;
|
124
|
+
|
125
|
+
this.total = total;
|
126
|
+
|
127
|
+
this.createdAt = createdAt;
|
128
|
+
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
public long getId() {
|
134
|
+
|
135
|
+
return id;
|
136
|
+
|
137
|
+
}
|
138
|
+
|
139
|
+
public void setId(long id) {
|
140
|
+
|
141
|
+
this.id = id;
|
142
|
+
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
public long getUserId() {
|
148
|
+
|
149
|
+
return userId;
|
150
|
+
|
151
|
+
}
|
152
|
+
|
153
|
+
public void setUserId(long userId) {
|
154
|
+
|
155
|
+
this.userId = userId;
|
156
|
+
|
157
|
+
}
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
public long getGoodsId() {
|
162
|
+
|
163
|
+
return goodsId;
|
164
|
+
|
165
|
+
}
|
166
|
+
|
167
|
+
public void setGoodsId(long goodsId) {
|
168
|
+
|
169
|
+
this.goodsId = goodsId;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
public String getGoodName() {
|
176
|
+
|
177
|
+
return goodsName;
|
178
|
+
|
179
|
+
}
|
180
|
+
|
181
|
+
public void setGoodsName(String goodsName) {
|
182
|
+
|
183
|
+
this.goodsName = goodsName;
|
184
|
+
|
185
|
+
}
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
public long getItemCount() {
|
190
|
+
|
191
|
+
return itemCount;
|
192
|
+
|
193
|
+
}
|
194
|
+
|
195
|
+
public void setItemCount(long itemCount) {
|
196
|
+
|
197
|
+
this.itemCount = itemCount;
|
198
|
+
|
199
|
+
}
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
public long getTotal() {
|
204
|
+
|
205
|
+
return total;
|
206
|
+
|
207
|
+
}
|
208
|
+
|
209
|
+
public void setTotal(long total) {
|
210
|
+
|
211
|
+
this.total = total;
|
212
|
+
|
213
|
+
}
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
public String getCreatedAt() {
|
218
|
+
|
219
|
+
return createdAt;
|
220
|
+
|
221
|
+
}
|
222
|
+
|
223
|
+
public void setCreatedAt(String createdAt) {
|
224
|
+
|
225
|
+
this.createdAt = createdAt;
|
226
|
+
|
227
|
+
}
|
228
|
+
|
229
|
+
}
|
230
|
+
|
231
|
+
```
|
232
|
+
|
233
|
+
|
234
|
+
|
47
235
|
|
48
236
|
|
49
237
|
|
@@ -172,4 +360,8 @@
|
|
172
360
|
|
173
361
|
|
174
362
|
|
175
|
-
SpringBoot4.
|
363
|
+
SpringBoot(sts4.5.1)を使用
|
364
|
+
|
365
|
+
java側でのforEachがきちんと機能せず、webのコンソールで確認した結果
|
366
|
+
|
367
|
+
tbody内は書かれてないことになってます。
|