<%@ taglib prefix="t" uri="/easyui-tags"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path; %> <c:set var="webRoot" value="<%=basePath%>" />
时间: 2023-10-17 15:05:18 浏览: 95
关于jsp页面使用jstl的异常分析
这段代码是一个 JSP 页面的头部,它引入了一些标签库,包括 easyui-tags、jstl/core、jstl/functions 和 jstl/fmt_rt。同时,它也定义了一个名为 webRoot 的变量,它的值是通过获取请求的上下文路径和服务器信息拼接而成的。这个变量可以方便地在页面中使用,例如在引入 CSS 或 JS 文件时可以使用 ${webRoot} 替代绝对路径。
阅读全文