質問編集履歴

4

情報の追加

2021/01/18 06:42

投稿

K_3578
K_3578

スコア1282

test CHANGED
File without changes
test CHANGED
@@ -22,7 +22,267 @@
22
22
 
23
23
 
24
24
 
25
- ```
25
+ ```
26
+
27
+ <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
28
+
29
+ <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
30
+
31
+ <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
32
+
33
+ <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%>
34
+
35
+ <sql:setDataSource var="db" dataSource="jdbc/DataSource" />
36
+
37
+ <c:import url="/WEB-INF/views/layout/app.jsp">
38
+
39
+ <c:param name="content">
40
+
41
+ <c:if test="${flush != null}">
42
+
43
+ <div id="flush_success">
44
+
45
+ <c:out value="${flush}"></c:out>
46
+
47
+ </div>
48
+
49
+ </c:if>
50
+
51
+ <h2>車両 一覧</h2>
52
+
53
+ <label for="task_date">日付</label>                           
54
+
55
+ <br />
56
+
57
+ <input type="date" name="task_date" value="<fmt:formatDate value='${Trucks.task_date}' pattern='yyyy年MM月dd日(E)' />" />
58
+
59
+
60
+
61
+
62
+
63
+ <br /><br />
64
+
65
+
66
+
67
+ <p>
68
+
69
+ <label><input type="radio" name="tasktype" value="today">日中</label>
70
+
71
+ <label><input type="radio" name="tasktype" value="evening">夜間</label>                       
72
+
73
+ <br />
74
+
75
+
76
+
77
+
78
+
79
+ </p>
80
+
81
+ <p>
82
+
83
+ <!-- 積地・卸地は主要都道府県を上部に表示するようにする -->
84
+
85
+ <label for="stack_area">積地                  時刻</label><br />
86
+
87
+ <select name="積地">
88
+
89
+ <option value="選択してください" >都道府県</option>
90
+
91
+ <option value="東京都">東京都</option>
92
+
93
+ <option value="大阪府">大阪府</option>
94
+
95
+ <option value="愛知県">愛知県</option>
96
+
97
+ <option value="埼玉県">埼玉県</option>
98
+
99
+ <option value="静岡県">静岡県</option>
100
+
101
+ </select>
102
+
103
+
104
+
105
+ <input type="text" name="stack_area"placeholder="市町村" value="<fmt:formatDate value='${Trucks.stack_area}' />" />
106
+
107
+ <select name="時間">
108
+
109
+ <option value="00">0時</option>
110
+
111
+ <option value="01">1時</option>
112
+
113
+ <option value="02">2時</option>
114
+
115
+ <option value="03">3時</option>
116
+
117
+ <option value="04">4時</option>
118
+
119
+ <option value="05">5時</option>
120
+
121
+ <option value="06">6時</option>
122
+
123
+ <option value="07">7時</option>
124
+
125
+ <option value="08">8時</option>
126
+
127
+ <option value="09">9時</option>
128
+
129
+ <option value="10">10時</option>
130
+
131
+ <option value="11">11時</option>
132
+
133
+ <option value="12">12時</option>
134
+
135
+ <option value="13">13時</option>
136
+
137
+ <option value="14">14時</option>
138
+
139
+ <option value="15">15時</option>
140
+
141
+ <option value="16">16時</option>
142
+
143
+ <option value="17">17時</option>
144
+
145
+ <option value="18">18時</option>
146
+
147
+ <option value="19">19時</option>
148
+
149
+ <option value="20">20時</option>
150
+
151
+ <option value="21">21時</option>
152
+
153
+ <option value="22">22時</option>
154
+
155
+ <option value="23">23時</option>
156
+
157
+ <option value="午前">午前</option>
158
+
159
+ <option value="午後">午後</option>
160
+
161
+ <option value="問わず">問わず</option>
162
+
163
+ </select>
164
+
165
+ <p>
166
+
167
+ </p>
168
+
169
+ <label for="wholesale_area">卸地                  時刻</label>       
170
+
171
+ <br />
172
+
173
+ <select name="卸地">
174
+
175
+ <option value="選択してください" >都道府県</option>
176
+
177
+ <option value="東京都">東京都</option>
178
+
179
+ <option value="大阪府">大阪府</option>
180
+
181
+ <option value="愛知県">愛知県</option>
182
+
183
+ <option value="埼玉県">埼玉県</option>
184
+
185
+ <option value="静岡県">静岡県</option>
186
+
187
+ </select>
188
+
189
+ <input type="text" name="wholesale_area"placeholder="市町村" value="<fmt:formatDate value='${Trucks.wholesale_area}' />" />
190
+
191
+ <select name="時間">
192
+
193
+ <option value="00">0時</option>
194
+
195
+ <option value="01">1時</option>
196
+
197
+ <option value="02">2時</option>
198
+
199
+ <option value="03">3時</option>
200
+
201
+ <option value="04">4時</option>
202
+
203
+ <option value="05">5時</option>
204
+
205
+ <option value="06">6時</option>
206
+
207
+ <option value="07">7時</option>
208
+
209
+ <option value="08">8時</option>
210
+
211
+ <option value="09">9時</option>
212
+
213
+ <option value="10">10時</option>
214
+
215
+ <option value="11">11時</option>
216
+
217
+ <option value="12">12時</option>
218
+
219
+ <option value="13">13時</option>
220
+
221
+ <option value="14">14時</option>
222
+
223
+ <option value="15">15時</option>
224
+
225
+ <option value="16">16時</option>
226
+
227
+ <option value="17">17時</option>
228
+
229
+ <option value="18">18時</option>
230
+
231
+ <option value="19">19時</option>
232
+
233
+ <option value="20">20時</option>
234
+
235
+ <option value="21">21時</option>
236
+
237
+ <option value="22">22時</option>
238
+
239
+ <option value="23">23時</option>
240
+
241
+ <option value="午前">午前</option>
242
+
243
+ <option value="午後">午後</option>
244
+
245
+ <option value="問わず">問わず</option>
246
+
247
+ </select>
248
+
249
+ <label for="office_name">拠点名</label>
250
+
251
+ <select name="場所">
252
+
253
+ <option value="西日本">西日本</option>
254
+
255
+ <option value="名古屋">名古屋</option>
256
+
257
+ <option value="浜松">浜松</option>
258
+
259
+ <option value="埼玉">埼玉営業所</option>
260
+
261
+ </select>
262
+
263
+
264
+
265
+ <label for="truck_code">車番</label>
266
+
267
+
268
+
269
+ <input type="text" name="truck_code"placeholder="(例)和泉100あ0478" value="<fmt:formatDate value='${Trucks.truck_code}' />" />
270
+
271
+
272
+
273
+ <label for="truck_type">車種</label>
274
+
275
+ <select name="車種">
276
+
277
+ <option value="4t">4t</option>
278
+
279
+ <option value="8t">8t</option>
280
+
281
+ <option value="15t">15t</option>
282
+
283
+
284
+
285
+ </select>
26
286
 
27
287
  <table class="table_sticky">
28
288
 

3

情報の修正

2021/01/18 06:42

投稿

K_3578
K_3578

スコア1282

test CHANGED
File without changes
test CHANGED
@@ -12,93 +12,7 @@
12
12
 
13
13
  ### 発生している問題・エラーメッセージ
14
14
 
15
- ![![HTTPステータス 500 - java.lang.NumberFormatException: For input string: "office_name"
16
-
17
- type 例外レポート
18
-
19
-
20
-
21
- メッセージ java.lang.NumberFormatException: For input string: "office_name"
22
-
23
-
24
-
25
- 説明 The server encountered an internal error that prevented it from fulfilling this request.
26
-
27
-
28
-
29
- 例外
30
-
31
-
32
-
33
- org.apache.jasper.JasperException: java.lang.NumberFormatException: For input string: "office_name"
34
-
35
- org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:560)
36
-
37
- org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
38
-
39
- org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
40
-
41
- org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
42
-
43
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
44
-
45
- org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
46
-
47
- controllers.dispatch.DispatchIndexServlet.doGet(DispatchIndexServlet.java:55)
48
-
49
- javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
50
-
51
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
52
-
53
- org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
54
-
55
- filters.LoginFilter.doFilter(LoginFilter.java:72)
56
-
57
- filters.EncodingFilter.doFilter(EncodingFilter.java:38)
58
-
59
- 原因
60
-
61
-
62
-
63
- java.lang.NumberFormatException: For input string: "office_name"
64
-
65
- java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
66
-
67
- java.lang.Integer.parseInt(Integer.java:580)
68
-
69
- java.lang.Integer.parseInt(Integer.java:615)
70
-
71
- javax.el.ListELResolver.coerce(ListELResolver.java:157)
15
+ ![イメージ説明](cb4fe45ad41c0e5fec16178de17864ef.png)
72
-
73
- javax.el.ListELResolver.getValue(ListELResolver.java:70)
74
-
75
- org.apache.jasper.el.JasperELResolver.getValue(JasperELResolver.java:110)
76
-
77
- org.apache.el.parser.AstValue.getValue(AstValue.java:169)
78
-
79
- org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:184)
80
-
81
- org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate(PageContextImpl.java:943)
82
-
83
- org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fout_005f1(index_jsp.java:843)
84
-
85
- org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fparam_005f0(index_jsp.java:527)
86
-
87
- org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fimport_005f0(index_jsp.java:220)
88
-
89
- org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspService(index_jsp.java:150)
90
-
91
- org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
92
-
93
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
94
-
95
- org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438)
96
-
97
- org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
98
-
99
- org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
100
-
101
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)](f3ded54d9d754f250ebd613499b63dd8.png)](35dadf3c3209606db162b80596d764d1.png)
102
16
 
103
17
 
104
18
 

2

情報の追加

2021/01/18 06:17

投稿

K_3578
K_3578

スコア1282

test CHANGED
File without changes
test CHANGED
@@ -12,224 +12,206 @@
12
12
 
13
13
  ### 発生している問題・エラーメッセージ
14
14
 
15
-
15
+ ![![HTTPステータス 500 - java.lang.NumberFormatException: For input string: "office_name"
16
+
17
+ type 例外レポート
18
+
19
+
20
+
21
+ メッセージ java.lang.NumberFormatException: For input string: "office_name"
22
+
23
+
24
+
25
+ 説明 The server encountered an internal error that prevented it from fulfilling this request.
26
+
27
+
28
+
29
+ 例外
30
+
31
+
32
+
33
+ org.apache.jasper.JasperException: java.lang.NumberFormatException: For input string: "office_name"
34
+
35
+ org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:560)
36
+
37
+ org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
38
+
39
+ org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
40
+
41
+ org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
42
+
43
+ javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
44
+
45
+ org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
46
+
47
+ controllers.dispatch.DispatchIndexServlet.doGet(DispatchIndexServlet.java:55)
48
+
49
+ javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
50
+
51
+ javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
52
+
53
+ org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
54
+
55
+ filters.LoginFilter.doFilter(LoginFilter.java:72)
56
+
57
+ filters.EncodingFilter.doFilter(EncodingFilter.java:38)
58
+
59
+ 原因
60
+
61
+
62
+
63
+ java.lang.NumberFormatException: For input string: "office_name"
64
+
65
+ java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
66
+
67
+ java.lang.Integer.parseInt(Integer.java:580)
68
+
69
+ java.lang.Integer.parseInt(Integer.java:615)
70
+
71
+ javax.el.ListELResolver.coerce(ListELResolver.java:157)
72
+
73
+ javax.el.ListELResolver.getValue(ListELResolver.java:70)
74
+
75
+ org.apache.jasper.el.JasperELResolver.getValue(JasperELResolver.java:110)
76
+
77
+ org.apache.el.parser.AstValue.getValue(AstValue.java:169)
78
+
79
+ org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:184)
80
+
81
+ org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate(PageContextImpl.java:943)
82
+
83
+ org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fout_005f1(index_jsp.java:843)
84
+
85
+ org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fparam_005f0(index_jsp.java:527)
86
+
87
+ org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fimport_005f0(index_jsp.java:220)
88
+
89
+ org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspService(index_jsp.java:150)
90
+
91
+ org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
92
+
93
+ javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
94
+
95
+ org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438)
96
+
97
+ org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
98
+
99
+ org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
100
+
101
+ javax.servlet.http.HttpServlet.service(HttpServlet.java:729)](f3ded54d9d754f250ebd613499b63dd8.png)](35dadf3c3209606db162b80596d764d1.png)
102
+
103
+
104
+
105
+
106
+
107
+ ### 該当のソースコード
108
+
109
+
110
+
111
+ ```
112
+
113
+ <table class="table_sticky">
114
+
115
+ <thead>
116
+
117
+ <tr>
118
+
119
+ <th class="space1" rowspan="2" colspan="3"></th>
120
+
121
+ <th class="Day1" colspan="4"><fmt:formatDate value='${Trucks.task_date}' pattern='yyyy年MM月dd日(E)' /></th>
122
+
123
+ <th class="Day2" colspan="4"><fmt:formatDate value='${Trucks.task_date}' pattern='yyyy年MM月dd日(E)' /></th>
124
+
125
+ <th class="Day3" colspan="4"><fmt:formatDate value='${Trucks.task_date}' pattern='yyyy年MM月dd日(E)' /></th>
126
+
127
+ </tr>
128
+
129
+ <tr>
130
+
131
+ <th class ="mw_time"></th>
132
+
133
+ <th class ="sa_time"></th>
134
+
135
+ <th class ="wa_time"></th>
136
+
137
+ <th class ="es_time"></th>
138
+
139
+ <th class ="mw_time2"></th>
140
+
141
+ <th class ="sa_time2"></th>
142
+
143
+ <th class ="wa_time2"></th>
144
+
145
+ <th class ="es_time2"></th>
146
+
147
+ <th class ="mw_time3"></th>
148
+
149
+ <th class ="sa_time3"></th>
150
+
151
+ <th class ="wa_time3"></th>
152
+
153
+ <th class ="es_time3"></th>
154
+
155
+ </tr>
156
+
157
+ </thead>
158
+
159
+ <tbody>
160
+
161
+ <tr>
162
+
163
+ <td class="拠点名"><c:out value="${trucks.office_name}"></c:out></td>
164
+
165
+ <td class="車番"><c:out value="${trucks.truck_code}"></c:out></td>
166
+
167
+ <td class="車種"><c:out value="${trucks.truck_type}"></c:out></td>
168
+
169
+ <td class ="宵積卸地"></td>
170
+
171
+ <td class ="積地"><c:out value="${trucks.stack_area}"></c:out></td>
172
+
173
+ <td class ="卸地"><c:out value="${trucks.wholesale_area}"></c:out></td>
174
+
175
+ <td class ="宵積"></td>
176
+
177
+ <td class ="宵積卸地2"></td>
178
+
179
+ <td class ="積地2"></td>
180
+
181
+ <td class ="卸地2"></td>
182
+
183
+ <td class ="宵積2"></td>
184
+
185
+ <td class ="宵積卸地3"></td>
186
+
187
+ <td class ="積地3"></td>
188
+
189
+ <td class ="卸地3"></td>
190
+
191
+ <td class ="宵積3"></td>
192
+
193
+ </tr>
194
+
195
+ </tbody>
196
+
197
+ </table>
198
+
199
+ <div id="pagination">
200
+
201
+ (全 ${trucks_count} 台)<br />
202
+
203
+ </div>
204
+
205
+ <p><a href="<c:url value='/dispatch/new' />">新規登録</a></p>
206
+
207
+ <p><a href="<c:url value='/dispatch/edit' />">登録情報変更</a></p>
208
+
209
+ </c:param>
210
+
211
+ </c:import>
16
212
 
17
213
  ```
18
214
 
19
- HTTPステータス 500 - java.lang.NumberFormatException: For input string: "office_name"
20
-
21
- type 例外レポート
22
-
23
-
24
-
25
- メッセージ java.lang.NumberFormatException: For input string: "office_name"
26
-
27
-
28
-
29
- 説明 The server encountered an internal error that prevented it from fulfilling this request.
30
-
31
-
32
-
33
- 例外
34
-
35
-
36
-
37
- org.apache.jasper.JasperException: java.lang.NumberFormatException: For input string: "office_name"
38
-
39
- org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:560)
40
-
41
- org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:476)
42
-
43
- org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
44
-
45
- org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
46
-
47
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
48
-
49
- org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
50
-
51
- controllers.dispatch.DispatchIndexServlet.doGet(DispatchIndexServlet.java:55)
52
-
53
- javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
54
-
55
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
56
-
57
- org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
58
-
59
- filters.LoginFilter.doFilter(LoginFilter.java:72)
60
-
61
- filters.EncodingFilter.doFilter(EncodingFilter.java:38)
62
-
63
- 原因
64
-
65
-
66
-
67
- java.lang.NumberFormatException: For input string: "office_name"
68
-
69
- java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
70
-
71
- java.lang.Integer.parseInt(Integer.java:580)
72
-
73
- java.lang.Integer.parseInt(Integer.java:615)
74
-
75
- javax.el.ListELResolver.coerce(ListELResolver.java:157)
76
-
77
- javax.el.ListELResolver.getValue(ListELResolver.java:70)
78
-
79
- org.apache.jasper.el.JasperELResolver.getValue(JasperELResolver.java:110)
80
-
81
- org.apache.el.parser.AstValue.getValue(AstValue.java:169)
82
-
83
- org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:184)
84
-
85
- org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate(PageContextImpl.java:943)
86
-
87
- org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fout_005f1(index_jsp.java:843)
88
-
89
- org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fparam_005f0(index_jsp.java:527)
90
-
91
- org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspx_meth_c_005fimport_005f0(index_jsp.java:220)
92
-
93
- org.apache.jsp.WEB_002dINF.views.dispatch.index_jsp._jspService(index_jsp.java:150)
94
-
95
- org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
96
-
97
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
98
-
99
- org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438)
100
-
101
- org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
102
-
103
- org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
104
-
105
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
106
-
107
- org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
108
-
109
- controllers.dispatch.DispatchIndexServlet.doGet(DispatchIndexServlet.java:55)
110
-
111
- javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
112
-
113
- javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
114
-
115
- org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
116
-
117
- filters.LoginFilter.doFilter(LoginFilter.java:72)
118
-
119
- filters.EncodingFilter.doFilter(EncodingFilter.java:38)
120
-
121
- ```
122
-
123
-
124
-
125
- ### 該当のソースコード
126
-
127
-
128
-
129
- ```
130
-
131
- <table class="table_sticky">
132
-
133
- <thead>
134
-
135
- <tr>
136
-
137
- <th class="space1" rowspan="2" colspan="3"></th>
138
-
139
- <th class="Day1" colspan="4"><fmt:formatDate value='${Trucks.task_date}' pattern='yyyy年MM月dd日(E)' /></th>
140
-
141
- <th class="Day2" colspan="4"><fmt:formatDate value='${Trucks.task_date}' pattern='yyyy年MM月dd日(E)' /></th>
142
-
143
- <th class="Day3" colspan="4"><fmt:formatDate value='${Trucks.task_date}' pattern='yyyy年MM月dd日(E)' /></th>
144
-
145
- </tr>
146
-
147
- <tr>
148
-
149
- <th class ="mw_time"></th>
150
-
151
- <th class ="sa_time"></th>
152
-
153
- <th class ="wa_time"></th>
154
-
155
- <th class ="es_time"></th>
156
-
157
- <th class ="mw_time2"></th>
158
-
159
- <th class ="sa_time2"></th>
160
-
161
- <th class ="wa_time2"></th>
162
-
163
- <th class ="es_time2"></th>
164
-
165
- <th class ="mw_time3"></th>
166
-
167
- <th class ="sa_time3"></th>
168
-
169
- <th class ="wa_time3"></th>
170
-
171
- <th class ="es_time3"></th>
172
-
173
- </tr>
174
-
175
- </thead>
176
-
177
- <tbody>
178
-
179
- <tr>
180
-
181
- <td class="拠点名"><c:out value="${trucks.office_name}"></c:out></td>
182
-
183
- <td class="車番"><c:out value="${trucks.truck_code}"></c:out></td>
184
-
185
- <td class="車種"><c:out value="${trucks.truck_type}"></c:out></td>
186
-
187
- <td class ="宵積卸地"></td>
188
-
189
- <td class ="積地"><c:out value="${trucks.stack_area}"></c:out></td>
190
-
191
- <td class ="卸地"><c:out value="${trucks.wholesale_area}"></c:out></td>
192
-
193
- <td class ="宵積"></td>
194
-
195
- <td class ="宵積卸地2"></td>
196
-
197
- <td class ="積地2"></td>
198
-
199
- <td class ="卸地2"></td>
200
-
201
- <td class ="宵積2"></td>
202
-
203
- <td class ="宵積卸地3"></td>
204
-
205
- <td class ="積地3"></td>
206
-
207
- <td class ="卸地3"></td>
208
-
209
- <td class ="宵積3"></td>
210
-
211
- </tr>
212
-
213
- </tbody>
214
-
215
- </table>
216
-
217
- <div id="pagination">
218
-
219
- (全 ${trucks_count} 台)<br />
220
-
221
- </div>
222
-
223
- <p><a href="<c:url value='/dispatch/new' />">新規登録</a></p>
224
-
225
- <p><a href="<c:url value='/dispatch/edit' />">登録情報変更</a></p>
226
-
227
- </c:param>
228
-
229
- </c:import>
230
-
231
- ```
232
-
233
215
 
234
216
 
235
217
 

1

書き忘れ

2021/01/18 06:13

投稿

K_3578
K_3578

スコア1282

test CHANGED
File without changes
test CHANGED
@@ -8,6 +8,8 @@
8
8
 
9
9
  なぜこのエラーが発生するのかがわかりません。
10
10
 
11
+
12
+
11
13
  ### 発生している問題・エラーメッセージ
12
14
 
13
15
 
@@ -237,3 +239,5 @@
237
239
  ### 補足情報(FW/ツールのバージョンなど)
238
240
 
239
241
  Eclipse4.6Neon
242
+
243
+ ソースコードはtableの部分しかコピペしてないです。