Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/config/struts-config.xml @ 8:65ff6fcfee0c
Some Basic Stuff for WebProjects
gnv/trunk@84 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 14 Sep 2009 13:56:03 +0000 |
parents | 72951b955f00 |
children | 4ebe57b170d3 |
comparison
equal
deleted
inserted
replaced
7:fe6a64545552 | 8:65ff6fcfee0c |
---|---|
2 <!DOCTYPE struts-config PUBLIC | 2 <!DOCTYPE struts-config PUBLIC |
3 "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" | 3 "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" |
4 "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd"> | 4 "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd"> |
5 <struts-config> | 5 <struts-config> |
6 <global-exceptions/> | 6 <global-exceptions/> |
7 <global-forwards> | |
8 <forward name="noSession" path="/start.do"/> | |
9 </global-forwards> | |
10 <action-mappings> | 7 <action-mappings> |
11 <action path="/test.do" type="de.intevation.gnv.action.ArtifactDatabaseActionBase"> | 8 <action path="/start" |
12 <description>General Forward</description> | 9 type="de.intevation.gnv.action.FetchArtifactFactoriesAction" |
13 <forward name="noSession" path="/WEB-INF/jsp/index.jsp"/> | 10 scope="request" |
11 validate="false"> | |
12 <forward | |
13 name="success" | |
14 path="/WEB-INF/jsp/index.jsp"/> | |
15 </action> | |
16 <action path="/selectArtifactFactory" | |
17 type="de.intevation.gnv.action.SelectArtifactFactoryAction" | |
18 scope="request" | |
19 validate="false"> | |
20 <forward | |
21 name="success" | |
22 path="/WEB-INF/jsp/index.jsp"/> | |
14 </action> | 23 </action> |
15 </action-mappings> | 24 </action-mappings> |
16 </struts-config> | 25 </struts-config> |
17 | 26 |