hello2.jsp

来自「Jodd是一个开源的公用Java基础类库」· JSP 代码 · 共 34 行

JSP
34
字号
<html>
<head>
	<title>Jodd Serverside</title>
</head>
<body bgcolor="#FFFFFF">

<h1>MVC2 framework</h1>
<a href="hello.jsp">back</a><br><br>


action not found: <a href="someAction.do">some dummy action</a>.
<br><br>

Actions may be mapped directly to the methods:
<br>
<a href="direct.do">action</a> with forwarding...<br>
same <a href="directR.do">action</a>, but with redirection...<br>

<br>
<a href="params.do">action</a> that has a forward with params<br>
<a href="paramsR.do">action</a> that has a forward with params, but with redirection<br>

<br>
<a href="external.do">invoke external action</a> (/mvc2/params.do) and use its resulting forward<br>

<br><br>

<a href="never.do">never</a> - this action will never come to it mapped ActionServlet because of
ActionFilter that will intercept the call and return the forward.


</body>
</html>

⌨️ 快捷键说明

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