Struts2 的路径

2019-04-14 22:13发布

interceptors  总共35个拦截器,底层默认执行20个拦截器 后台:  / 当前应用的根路径 前台: 前/ 相对路径 解析完毕后的效果        后台路径:http://localhost/02-path/        前台路径:http://localhost/02-path/test/login[/02-path/test/login中/代表http://localhost] 如果对比成功,则跳转成功 4种方法: 1:缺省项目名 2:/获取前台路径 3:通过el表达式获取项目名称 4:通过basePath 获取路径                <%--  
"${pageContext.request.contextPath}/test/Login" method="post">     用户名:type="text" name="username">     密 码:type="password" name="password">     type="submit" value="提交">    
--%>
    <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>       test/Login” method=”post”>     用户名:     密 码: