jsp的静态导入

<body>
<!--
include 包括 包含
页面相互引用

静态引入 把多工文件 合并为一个文件 然后在编译

不要有重复的变量
-->
<h1>this is a include test 01</h1>

<%@include file="testinclude02.jsp" %>

</body>

testinclude02.jsp:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%-- <%
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>
<base href="<%=basePath%>">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

<title>This is my JSP 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>
<h1>this is a include 02</h1>
</body>
</html>

原文地址:https://www.cnblogs.com/hwgok/p/5823600.html