00ce8ec01247001c1623b88abf704101

来自「尚学堂Java148班的spring的所有源码」· 代码 · 共 42 行

TXT
42
字号
<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
          "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">
<struts-config>
	<form-beans>
		<form-bean name="itemForm" type="com.bjsxt.drp.web.itemmgr.forms.ItemActionForm"></form-bean>
	</form-beans>
	
 	<action-mappings>
 		
 		<action path="/additem"
 				forward="/item_add.jsp"
 				name="itemForm"
 		>
 		</action>
 	
		<action path="/item"
				type="org.springframework.web.struts.DelegatingActionProxy"
				name="itemForm"
				scope="request"
				parameter="command"
		>
				<forward name="modify_detail" path="/item_modify.jsp"></forward>
				<forward name="find_detail" path="/item_detail.jsp"></forward>
				<forward name="list_success" path="/item_maint.jsp"></forward>
				<forward name="upload_detail" path="/item_upload.jsp"></forward>
		</action>
		

		<action path="/changelan"
				type="org.springframework.web.struts.DelegatingActionProxy""
				scope="request"
		>
				<forward name="success" path="/index.jsp"></forward>
		</action>
		
	</action-mappings>
 
    <message-resources parameter="MessageResources" />
</struts-config>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?