运行的时候就是从WebRoot文件下下开始找的,如果放到其子文件夹里,当然路径要包括那个子文件夹名,比如子文件夹的名字叫src,运行的时候路径名就是localhost:端口号/工程名/src/文件名
配置jsp索引首页是在xml文件里配置的。其他的就看
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
这是新建jsp文件自动生成的意思是从根目录开始需找的也就是wenroot下开始的。