index.jsp

来自「spring的WEB开发插件,支持多状态WEB开发」· JSP 代码 · 共 45 行

JSP
45
字号
<%@ page session="true" %> <%-- make sure we have a session --%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
	<HEAD>
	</HEAD>
	<BODY>
	
		<DIV align="left">Item List - A Spring Web Flow Sample</DIV>
		
		<HR>
		
		<DIV align="left">
			<P>
				<A href="itemlist.htm">Item List</A>
			</P>
			
			<P>
				This Spring web flow sample application illustrates 3 features:
				<UL>
					<LI>
						Double submit prevention using the application transaction
						capabilities offered by the TransactionSynchronizer class:
						refreshing or back button use will not allow you to resubmit data.
					</LI>
					<LI>
						Flow expiry and cleanup using the ExpiredFlowCleanupFilter:
						after 1 minute of idle time, a web flow will expire and
						will no longer be available for request processing.
					</LI>
					<LI>
						Event pattern matching, for matching eventId expressions to transitions.
					</LI>

				</UL>
			</P>
		</DIV>
		
		<HR>

		<DIV align="right"></DIV>
		
	</BODY>
</HTML>

⌨️ 快捷键说明

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