我想调用一个具有 GWT 模块的 JSP,main.jsp
其中包含页眉和页脚。这些 GWT 模块应该加载到main.jsp
. 根据从 header.jsp 中单击的链接,相应的 GWT 模块应加载到的正文中main.jsp
:
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script>
$(document).ready(function() {
$("#clickMe").click(function() {
// This gwtModule.jsp contains only GWT module.
$("#name").load("/gwtModule.jsp");
});
});
</script>
</head>
<body>
${headerAndMenuCache}
<h1>Web Application Starter Project</h1>
<a href="#" id="clickMe">clickMe</a>
<div id="name">
</div>
<jsp:include page="/footer.jsp" />
</body>
</html>