winresult.xml.svn-base

来自「学习dwr+struts2+spring进行开发的好例子」· SVN-BASE 代码 · 共 36 行

SVN-BASE
36
字号
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
	<package name="LotteryWeb_WinResult" extends="lotteryWeb-struts-default"
		namespace="/NoticeGameResult">
		<action name="NoticeGameResultList"
			class="com.szhelper.lotteryWeb.webapp.action.NoticeGameResultAction"
			method="list">
			<result>NoticeGameResultList.jsp</result>
			<result name="error">NoticeGameResultList.jsp</result>
		</action>
		<action name="NoticeGameResultEdit"
			class="com.szhelper.lotteryWeb.webapp.action.NoticeGameResultAction"
			method="load">
			<result>NoticeGameResultEdit.jsp</result>			
		</action>
		<action name="NoticeGameResultStore"
			class="com.szhelper.lotteryWeb.webapp.action.NoticeGameResultAction"
			method="store">
			<result name="input">NoticeGameResultEdit.jsp</result>
			<result type="redirect">
				NoticeGameResultList.lotteryWeb
			</result>			
		</action>
		<action name="NoticeGameResultRemove"
			class="com.szhelper.lotteryWeb.webapp.action.NoticeGameResultAction"
			method="delete">
			<result type="redirect">
				NoticeGameResultList.lotteryWeb
			</result>
		</action>
	</package>
</struts>

⌨️ 快捷键说明

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