struts-config.xml: struts configuration file

<struts-config>
	<form-beans>
		<form-bean name="personForm" type="com.iwtxokhtd.web.form.PersonForm"/>
	</form-beans>
	<action-mappings>
		<!--path属性值一定要与spring配置文件中的bean的name属性值一致-->
		<action path="/person/list" validate="false">
			<forward name="list" path="/WEB-INF/page/personlist.jsp"/>
		</action>
		<action path="/person/manage" parameter="method" name="personForm" scope="request" validate="false">
			<forward name="message" path="/WEB-INF/page/message.jsp"/>
		</action>
	</action-mappings>
 <!--将struts交给spring容器管理-->
 <controller>
 <set-property property="processorClass" value="org.springframework.web.struts.DelegatingRequestProcessor"/>
</controller> 
</struts-config>