Hello2Action.java
package com.tianhe.app.pub.hello2.action;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
//請注意類上定義RequestMapping,視圖不以/開始
@RequestMapping("/pub/hello2")
public class Hello2Action
{
@RequestMapping("/helloA")
public String helloMethodA()
{
System.out.println("hello2.helloA");
return "pub/hello2/helloA";
}
@RequestMapping("/helloB")
public String helloMethodB()
{
System.out.println("hello2.helloB");
return "pub/hello2/helloB";
}
}
WEB-INF/pub/hello2/helloA.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>hello2.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/hello2/helloB.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>hello2.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>