hello1.jsp
来自「Jodd是一个开源的公用Java基础类库」· JSP 代码 · 共 26 行
JSP
26 行
<html>
<head>
<title>Jodd Serverside</title>
</head>
<body bgcolor="#FFFFFF">
<h1>MVC2 framework</h1>
<a href="hello.jsp">back</a><br><br>
Three different actions, all handled by the same class:<br>
<a href="act.do">action</a> without specified action<br>
good <a href="act.do?action=good">action</a> + <b>action data</b>!!!<br>
bad <a href="act.do?action=bad">action</a><br>
<br>
Three more actions, different uri from above, but handled again with the same class,
except redirection is used instead forwarding.<br><br>
<a href="actR.do">action</a> without specified action<br>
good <a href="actR.do?action=good">action</a><br>
bad <a href="actR.do?action=bad">action</a><br>
<br>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?