-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathstruts.xml
More file actions
21 lines (17 loc) · 701 Bytes
/
struts.xml
File metadata and controls
21 lines (17 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<!-- Configuration for the default package. -->
<package name="default" extends="struts-default,json-default">
<action name="gridaction" class="actions.NAction">
<result name="success" type="json"/>
</action>
<action name="editaction" class="actions.NAction" method="edit">
<result name="success" type="json"/>
</action>
<action name="selectaction" class="actions.SelectAction">
<result name="success">/select.jsp</result>
</action>
</package>
</struts>