我在MyEclipse下演练一个在线图书系统,工程没有提示有代码错误,只是当我点击WebRoot目录下的index页面时弹出这样的提示:The file /D:/Workspaces/Mybookstore/WebRoot/${pageContex.request.contexPath}/client/head.jsp cannot be found.please check the location and try again.请问有哪位前辈知道该怎样解决?
我的index.jsp页面代码如下:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>    
    <title>前台首页</title>
  </head>
  
  <frameset rows="25%,*">
    
    <frame src="${pageContext.request.contextPath }/client/head.jsp" name="head">
   <frame src="${pageContext.request.contextPath }/client/IndexServlet?method=getAll" name="body">
  </frameset>
  
  
  
</html>