質問編集履歴

3

コンソールの内容を追記しました

2016/07/28 04:54

投稿

cray
cray

スコア29

test CHANGED
File without changes
test CHANGED
@@ -394,4 +394,16 @@
394
394
 
395
395
  ScopedModelDrivenでセッションに値が保存されているはずですが保存されません。
396
396
 
397
- どこがおかしいのでしょうか。
397
+
398
+
399
+ confirmからconform1に画面遷移する際にコンソールに
400
+
401
+ ```ここに言語を入力
402
+
403
+ 情報: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
404
+
405
+ ```
406
+
407
+ と赤字で表示されました。
408
+
409
+ どこを修正したらいいでしょうか。

2

struts\.xmlを追記しました

2016/07/28 04:53

投稿

cray
cray

スコア29

test CHANGED
File without changes
test CHANGED
@@ -306,7 +306,87 @@
306
306
 
307
307
 
308
308
 
309
+ #struts.xml
310
+
311
+ ```
312
+
313
+ <?xml version="1.0" encoding="UTF-8" ?>
314
+
315
+ <!DOCTYPE struts PUBLIC
316
+
317
+ "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
318
+
319
+ "http://struts.apache.org/dtds/struts-2.0.dtd">
320
+
321
+ <struts>
322
+
323
+
324
+
325
+
326
+
327
+ <package name="Pro" extends="struts-default">
328
+
329
+
330
+
331
+ <action name="Hello" class="part1.Hello">
332
+
333
+ <result name="success">/index.jsp</result>
334
+
335
+ </action>
336
+
337
+
338
+
339
+ <action name="Research" class="part2.Research">
340
+
341
+ <result name="success">/part2/research.jsp</result>
342
+
343
+ </action>
344
+
345
+
346
+
347
+ <action name="ResearchConfirm" method="confirm" class="part2.Research">
348
+
349
+ <result name="success">/part2/confirm.jsp</result>
350
+
351
+ </action>
352
+
353
+
354
+
355
+ <action name="Research" class="part2.Research">
356
+
357
+ <result name="success">/part2/research.jsp</result>
358
+
359
+ </action>
360
+
361
+
362
+
363
+ <action name="ResearchConfirm" method="confirm" class="part2.Research">
364
+
365
+ <result name="success">/part2/confirm.jsp</result>
366
+
367
+ <result name="input">/part2/research.jsp</result>
368
+
369
+ </action>
370
+
371
+
372
+
373
+ <action name="ResearchConfirm1" method="confirm" class="part2.Research">
374
+
375
+ <result name="success">/part2/conform1.jsp</result>
376
+
377
+
378
+
379
+ </action>
380
+
381
+ </package>
382
+
383
+ </struts>
384
+
385
+ ```
386
+
387
+
388
+
309
- 書ききれないのでstruts.xmlとweb.xmlは省略しますがそこに問題がありそうなら記載します。
389
+ 書ききれないのでweb.xmlは省略しますがそこに問題がありそうなら記載します。
310
390
 
311
391
  環境は先ほどのサイトと同じのはずです。
312
392
 

1

ソースコードを編集

2016/07/28 04:46

投稿

cray
cray

スコア29

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
 
16
16
 
17
- ##struts.xml
17
+ ##ProModel.java
18
18
 
19
19
  ```ここに言語を入力
20
20