如何从一个javaweb项目跳转到另外一个javaweb项目主页
我这里一个tomcat下有2个javaweb项目,项目A有域名www.aaa.com,项目B没有域名,如何在项目A中的一个页面跳转到项目B的首页?...
我这里一个tomcat下有2个javaweb项目,项目A有域名www.aaa.com,项目B没有域名,如何在项目A中的一个页面跳转到项目B的首页?
展开
展开全部
可以使用JavaScript做,代码如下:
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language="javascript" type="text/jscript"> <!--JavaScript跳转方法-->
function loadWeb(){
window.location.href='http://www.aaaa.com';
}
</script>
<base href="<%=basePath%>">
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body onload="loadWeb()"> <br></body>
</html>
这段代码写在项目B的主页文件里面
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language="javascript" type="text/jscript"> <!--JavaScript跳转方法-->
function loadWeb(){
window.location.href='http://www.aaaa.com';
}
</script>
<base href="<%=basePath%>">
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body onload="loadWeb()"> <br></body>
</html>
这段代码写在项目B的主页文件里面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询