質問編集履歴
1
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,12 +1,10 @@
|
|
1
|
-
Struts2を勉強中です。
|
1
|
+
Struts2を勉強中です。
|
2
|
-
struts-config.xmlに以下のようなコードがあるのですが、class="actions.events.{1}"の意味がよくわかりません。
|
2
|
+
struts-config.xmlに以下のようなコードがあるのですが、class="actions.events.{1}"の意味がよくわかりません。
|
3
|
-
この場合の{1}は何を意味し、何を行うのでしょうか?{}の目的を教えてください。
|
3
|
+
この場合の{1}は何を意味し、何を行うのでしょうか?{}の目的を教えてください。
|
4
|
-
|
5
|
-
|
4
|
+
|
6
|
-
<package name="sendRedirect" namespace="/sendRedirect" extends="struts-default">
|
5
|
+
<package name="sendRedirect" namespace="/sendRedirect" extends="struts-default">
|
7
|
-
<action name="*" class="actions.sendRedirect.{1}">
|
6
|
+
<action name="*" class="actions.sendRedirect.{1}">
|
8
|
-
<result>/views/sendRedirect/{1}.jsp</result>
|
7
|
+
<result>/views/sendRedirect/{1}.jsp</result>
|
9
|
-
<result name="redirect" type="redirect">${redirectUrl}</result>
|
8
|
+
<result name="redirect" type="redirect">${redirectUrl}</result>
|
10
|
-
</action>
|
9
|
+
</action>
|
11
|
-
</package>
|
10
|
+
</package>
|
12
|
-
```
|