質問編集履歴

1

ああああああああああああああああああ

2022/05/17 11:10

投稿

wassan_nikoniko
wassan_nikoniko

スコア9

test CHANGED
@@ -1 +1 @@
1
- jspで受け取った値を、次のjspにEL式で出力したい。
1
+ ああああああああああああああああああ
test CHANGED
@@ -1,657 +1 @@
1
- ### 前提・実現したいこと
2
-
3
- ProductInfo.jspで受け取った値を、ProductList.jspにEL式で出力をしたい
4
-
5
- ### 発生している問題・エラーメッセージ
6
-
7
-
8
-
9
- ```
10
-
11
- タイプ 例外報告
12
-
13
-
14
-
15
- メッセージ [WEB-INF/jsp/ProductList.jsp] の処理中に行番号 [30] で例外が発生しました。
16
-
17
-
18
-
19
- 説明 サーバーは予期しない条件に遭遇しました。それはリクエストの実行を妨げます。
20
-
21
-
22
-
23
- 例外
24
-
25
-
26
-
27
- org.apache.jasper.JasperException: [WEB-INF/jsp/ProductList.jsp] の処理中に行番号 [30] で例外が発生しました。
28
-
29
-
30
-
31
- 27: </tr>
32
-
33
- 28: <!-- 二行目 -->
34
-
35
- 29: <tr>
36
-
37
- 30: <td> ${Product.Productid}</td>
38
-
39
- 31: <td><img class="watch" src="image/Aandyou_SW_E07_一覧用.png"></td>
40
-
41
- 32: <td><%=product.getProductmaker()%></td>
42
-
43
- 33: <td><%=product.getProductname()%></td>
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
- 根本原因
52
-
53
-
54
-
55
- javax.el.PropertyNotFoundException: プロパティ[Productid]がタイプ[dto.Product]で見つかりません
56
-
57
- 以下文字数制限のため省略
58
-
59
- ```
60
-
61
-
62
-
63
-
64
-
65
- ### 該当のソースコード
66
-
67
-
68
-
69
- ```servlet
70
-
71
- package sample;
72
-
73
-
74
-
75
- import java.io.IOException;
76
-
77
- import java.sql.SQLException;
78
-
79
-
80
-
81
- import javax.servlet.RequestDispatcher;
82
-
83
- import javax.servlet.ServletException;
84
-
85
- import javax.servlet.annotation.WebServlet;
86
-
87
- import javax.servlet.http.HttpServlet;
88
-
89
- import javax.servlet.http.HttpServletRequest;
90
-
91
- import javax.servlet.http.HttpServletResponse;
92
-
93
-
94
-
95
- import dao.ProductDao;
96
-
97
- import dto.Product;
98
-
99
-
100
-
101
- /**
102
-
103
- * Servlet implementation class ProductInfoServlet
104
-
105
- */
106
-
107
- @WebServlet("/ProductInfoServlet")
108
-
109
- public class ProductInfoServlet extends HttpServlet {
110
-
111
- private static final long serialVersionUID = 1L;
112
-
113
-
114
-
115
- /**
116
-
117
- * @see HttpServlet#HttpServlet()
118
-
119
- */
120
-
121
- public ProductInfoServlet() {
122
-
123
- super();
124
-
125
- // TODO Auto-generated constructor stub
126
-
127
- }
128
-
129
-
130
-
131
- /**
132
-
133
- * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
134
-
135
- */
136
-
137
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
138
-
139
- RequestDispatcher rd=request.getRequestDispatcher("WEB-INF/jsp/ProductInfo.jsp");
140
-
141
- rd.forward(request, response);
142
-
143
-
144
-
145
- }
146
-
147
-
148
-
149
- /**
150
-
151
- * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
152
-
153
- */
154
-
155
- protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
156
-
157
- //値をgetする
158
-
159
- int Productid=Integer.parseInt(request.getParameter("Productid"));
160
-
161
- String Productgenrecode=request.getParameter("ProductGenreCode");
162
-
163
- String Productname=request.getParameter("Productname");
164
-
165
- String Productmaker=request.getParameter("Productmaker");
166
-
167
- int Productprice=Integer.parseInt(request.getParameter("Productprice"));
168
-
169
- int Productstock=Integer.parseInt(request.getParameter("Productstock"));
170
-
171
- int Productsales=Integer.parseInt(request.getParameter("Productsales"));
172
-
173
- String Productremarks=request.getParameter("remarks");
174
-
175
-
176
-
177
- //コンソール上に出力
178
-
179
- System.out.println(Productid);
180
-
181
- System.out.println(Productgenrecode);
182
-
183
- System.out.println(Productmaker);
184
-
185
- System.out.println(Productname);
186
-
187
- System.out.println(Productprice);
188
-
189
- System.out.println(Productstock);
190
-
191
- System.out.println(Productsales);
192
-
193
- System.out.println(Productremarks);
194
-
195
-
196
-
197
-
198
-
199
-
200
-
201
- Product p =new Product();
202
-
203
- p.setProductid(Productid);
204
-
205
- p.setProductgenre(Productgenrecode);
1
+ ああああああああああああああああああああああああああああああああああああ
206
-
207
- p.setProductname(Productname);
208
-
209
- p.setProductmaker(Productmaker);
210
-
211
- p.setProductprice(Productprice);
212
-
213
- p.setProductstock(Productstock);
214
-
215
- p.setProductsales(Productsales);
216
-
217
-
218
-
219
- //insertメソッドを実行する。
220
-
221
- ProductDao productdao =new ProductDao();
222
-
223
- try {
224
-
225
- productdao.insertsqlinfo(p);
226
-
227
- } catch(SQLException e) {
228
-
229
- e.printStackTrace();
230
-
231
- }
232
-
233
-
234
-
235
- //リクエストスコープに値を入れ込む。
236
-
237
- request.setAttribute("product",p);
238
-
239
-
240
-
241
- //フォワード処理
242
-
243
- RequestDispatcher rd=request.getRequestDispatcher("WEB-INF/jsp/ProductList.jsp");
244
-
245
- rd.forward(request, response);
246
-
247
- }
248
-
249
-
250
-
251
- }
252
-
253
-
254
-
255
- ```
256
-
257
-
258
-
259
- ```dto
260
-
261
-
262
-
263
- package dto;
264
-
265
-
266
-
267
- public class Product implements java.io.Serializable{
268
-
269
- //javabeans
270
-
271
- //フィールド定義
272
-
273
- private int Productid;
274
-
275
- private String Productmaker;
276
-
277
- private String Productname;
278
-
279
- private String Productgenre;
280
-
281
- private int Productstock;
282
-
283
- private int Productsales;
284
-
285
- private int Productprice;
286
-
287
- private String Productremarks;
288
-
289
-
290
-
291
- //getter setterの定義
292
-
293
- public int getProductid() {
294
-
295
- return Productid;
296
-
297
- }
298
-
299
- public void setProductid(int productid) {
300
-
301
- Productid = productid;
302
-
303
- }
304
-
305
- public String getProductmaker() {
306
-
307
- return Productmaker;
308
-
309
- }
310
-
311
- public void setProductmaker(String productmaker) {
312
-
313
- Productmaker = productmaker;
314
-
315
- }
316
-
317
- public String getProductname() {
318
-
319
- return Productname;
320
-
321
- }
322
-
323
- public void setProductname(String productname) {
324
-
325
- Productname = productname;
326
-
327
- }
328
-
329
- public String getProductgenre() {
330
-
331
- return Productgenre;
332
-
333
- }
334
-
335
- public void setProductgenre(String productgenre) {
336
-
337
- Productgenre = productgenre;
338
-
339
- }
340
-
341
- public int getProductstock() {
342
-
343
- return Productstock;
344
-
345
- }
346
-
347
- public void setProductstock(int productstock) {
348
-
349
- Productstock = productstock;
350
-
351
- }
352
-
353
- public int getProductsales() {
354
-
355
- return Productsales;
356
-
357
- }
358
-
359
- public void setProductsales(int productsales) {
360
-
361
- Productsales = productsales;
362
-
363
- }
364
-
365
- public int getProductprice() {
366
-
367
- return Productprice;
368
-
369
- }
370
-
371
- public void setProductprice(int productprice) {
372
-
373
- Productprice = productprice;
374
-
375
- }
376
-
377
- public String getProductremarks() {
378
-
379
- return Productremarks;
380
-
381
- }
382
-
383
- public void setProductremarks(String productremarks) {
384
-
385
- Productremarks = productremarks;
386
-
387
- }
388
-
389
-
390
-
391
-
392
-
393
-
394
-
395
-
396
-
397
- }
398
-
399
-
400
-
401
- ```
402
-
403
- ```jsp
404
-
405
- <%@ page language="java" contentType="text/html; charset=UTF-8"
406
-
407
- pageEncoding="UTF-8"%>
408
-
409
- <!DOCTYPE html>
410
-
411
- <html lang="ja" dir="ltr">
412
-
413
- <head>
414
-
415
- <meta charset="utf-8">
416
-
417
- <link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/css/style.css">
418
-
419
- <title>商品情報管理システム</title>
420
-
421
- </head>
422
-
423
- <body>
424
-
425
- <h1>在庫管理システム</h1>
426
-
427
- <input class="input1" type="image" name="検索" value="検索" src="image/検索1.png">
428
-
429
- <input type="image" name="検索" value="検索" src="image/検索1.png"><br>
430
-
431
- <table border="1">
432
-
433
- <!-- 1行目 -->
434
-
435
- <tr>
436
-
437
- <th>商品ID</th>
438
-
439
- <th>画像</th>
440
-
441
- <th>メーカー名</th>
442
-
443
- <th>商品名</th>
444
-
445
- <th>ジャンル</th>
446
-
447
- <th>在庫数</th>
448
-
449
- <th>販売個数</th>
450
-
451
- <th>価格</th>
452
-
453
- </tr>
454
-
455
- <!-- 二行目 -->
456
-
457
- <tr>
458
-
459
- <td> ${product.Productid}</td>
460
-
461
- <td><img class="watch" src="image/Aandyou_SW_E07_一覧用.png"></td>
462
-
463
- <td>${product.Productmaker}</td>
464
-
465
- <td>${product.Productname}</td>
466
-
467
- <td>${product.Productgenre}</td>
468
-
469
- <td>${product.Productstock}</td>
470
-
471
- <td>${product.Productsales}</td>
472
-
473
- <td>${product.Productprice}</td>
474
-
475
- </tr>
476
-
477
- </table>
478
-
479
- </body>
480
-
481
- </html>
482
-
483
-
484
-
485
- ```
486
-
487
- ```jsp
488
-
489
- <%@ page language="java" contentType="text/html; charset=UTF-8"
490
-
491
- pageEncoding="UTF-8"%>
492
-
493
- <%@ page import="enums.ProductGenre"%>
494
-
495
- <%@ page import="enums.ProductMaker"%>
496
-
497
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
498
-
499
- <!DOCTYPE html>
500
-
501
- <html>
502
-
503
- <head>
504
-
505
- <link rel="stylesheet" type="text/css"
506
-
507
- href="<%=request.getContextPath() %>/css/ProductInfo.css">
508
-
509
- <meta charset="UTF-8">
510
-
511
- <title>商品情報登録</title>
512
-
513
- </head>
514
-
515
- <body>
516
-
517
- <form action="/pda.k.oonuki/ProductInfoServlet" method="POST">
518
-
519
- <div class="row">
520
-
521
- <p>商品ID</p>
522
-
523
- <p>ジャンル</p>
524
-
525
- </div>
526
-
527
-
528
-
529
- <input type="text" name="Productid">
530
-
531
- <!--<select name="Productgenre">
532
-
533
- <option value="時計">時計</option>
534
-
535
- <option value="電子機器">電子機器</option>
536
-
537
- <option value="携帯">携帯</option>
538
-
539
- </select> -->
540
-
541
-
542
-
543
- <select name="ProductGenreCode">
544
-
545
- <c:forEach var="genre" items="${ProductGenre.values()}">
546
-
547
- <option value="${genre.genrecode }">${genre.genrename}</option>
548
-
549
- </c:forEach>
550
-
551
- </select>
552
-
553
-
554
-
555
-
556
-
557
- <div class="row">
558
-
559
- <p>商品名</p>
560
-
561
- <p>メーカー名</p>
562
-
563
- </div>
564
-
565
-
566
-
567
- <input type="text" name="Productname">
568
-
569
-
570
-
571
- <!-- <select name="Productmaker">
572
-
573
- <option value="パナソニック">パナソニック</option>
574
-
575
- <option value="ソニー">ソニー</option>
576
-
577
- <option value="シャープ">シャープ</option>
578
-
579
- </select> -->
580
-
581
- <select name="productMaker">
582
-
583
- <c:forEach var="maker" items="${ProductMaker.values() }">
584
-
585
- <option value="${maker.makername}">
586
-
587
- ${maker.makername}</option>
588
-
589
- </c:forEach>
590
-
591
- </select>
592
-
593
-
594
-
595
- <div class="row">
596
-
597
- <p>金額</p>
598
-
599
- <p>在庫数</p>
600
-
601
- </div>
602
-
603
-
604
-
605
- <input type="text" name="Productprice"> <input type="text"
606
-
607
- name="Productstock">
608
-
609
-
610
-
611
- <div class="row">
612
-
613
- <p>販売個数</p>
614
-
615
- </div>
616
-
617
-
618
-
619
- <input type="text" name="Productsales">
620
-
621
-
622
-
623
- <div class="row">
624
-
625
- <p>備考</p>
626
-
627
- </div>
628
-
629
-
630
-
631
- <textarea name="remarks" rows="5"></textarea>
632
-
633
- <br>
634
-
635
- <button type="submit" name="submit">登録</button>
636
-
637
- </form>
638
-
639
- </body>
640
-
641
- </html>
642
-
643
- ```
644
-
645
-
646
-
647
- ### 試したこと
648
-
649
- EL式の記述方法について調べ、${リクエストスコープのデータ名.受け取ったインスタンスのプロパティ}
650
-
651
- という方法で記述をしているのですが、間違っていましたでしょうか?
652
-
653
-
654
-
655
- また、こちら初学者のため、EL式などの記述の方法等詳しいサイトなど調べたつもりですが何かおすすめのサイトなどございましたら
656
-
657
- 教えていただけると幸いです。