1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">
<struts-config>
<data-sources />
<form-beans >
<form-bean name="personneEditForm" type="struts.forms.PersonneEditForm" />
</form-beans>
<global-exceptions />
<action-mappings >
<action
attribute="personneEditForm"
input="/jsp/personneEdit.jsp"
name="personneEditForm"
parameter="do"
path="/personneEdit"
scope="request"
type="struts.actions.PersonneEditAction">
<forward name="showAdd" path="/jsp/personneAdd.jsp" />
<forward name="succes" path="/jsp/message.jsp" />
/>
</action>
</action-mappings>
</struts-config> |