<?xml version="1.0" encoding="Shift_JIS"?>
<!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>
<!-- (1)アクション・フォームBean
ExForActionFormクラスを指定します。 -->
<form-beans>
<form-bean
name="ExForAction"
type="struts.ExForActionForm" />
</form-beans>
<action-mappings>
<!-- (2)アクション・クラス ForwardActionクラスを指定します。 -->
<action path="/ExForAction"
type="org.apache.struts.actions.ForwardAction"
name="ExForAction"
scope="request"
parameter="/exForAction2.jsp" />
</action-mappings>
</struts-config>
|