Hello1Acction.java
//請注意類上不定義RequestMapping,視圖以/開始
@Controller
public class Hello1Action
{
@RequestMapping("/pub/hello1/helloA")
public String helloMethodA()
{
System.out.println("hello1.helloA");
return "/pub/hello1/helloA";
}
@RequestMapping("/pub/hello1/helloB")
public String helloMethodB()
{
System.out.println("hello1.helloB");
return "/pub/hello1/helloB";
}
}
WEB-INF/pub/hello1/hello1A.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "<html>
<head>
<title>天河框架案例演示</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" href="http://localhost:8080/jxc/skins/default/css/ngmain.css" />
<script language=javascript src="http://localhost:8080/jxc/skins/default/js/ngcommon.js"></script>
<script language="javascript">
function doLogin()
{
document.form0.action = "<%=request.getContextPath()%>/loginAction!login.action";
document.form0.method = "post";
document.form0.submit();
}
</script>
</head>
<body>
<h2>hello1.helloA</h2>
<center>
<div id="footer">
<h5>幫助 | 關于我們 | 使用條款 | 開放平臺</h5>
<a href="http://localhost:8080/jxc/welcome.jsp">f_qiangqiang@qq.com</a>
</div>
</center>
</body>
</html>
WEB-INF/pub/hello1/hello1B.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "<html>
<head>
<title>天河框架案例演示</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" href="http://localhost:8080/jxc/skins/default/css/ngmain.css" />
<script language=javascript src="http://localhost:8080/jxc/skins/default/js/ngcommon.js"></script>
<script language="javascript">
function doLogin()
{
document.form0.action = "<%=request.getContextPath()%>/loginAction!login.action";
document.form0.method = "post";
document.form0.submit();
}
</script>
</head>
<body>
<h2>hello1.helloB</h2>
<center>
<div id="footer">
<h5>幫助 | 關于我們 | 使用條款 | 開放平臺</h5>
<a href="http://localhost:8080/jxc/welcome.jsp">f_qiangqiang@qq.com</a>
</div>
</center>
</body>
</html>