sturts2的路径

interceptors 总共35个拦截器,底层默认执行20个拦截器

后台: / 当前应用的根路径

前台: 前/ 相对路径

解析完毕后的效果

   后台路径:[http://localhost/02-path](http://localhost/02-path)/

   前台路径:http://localhost/02-path/test/login[/02-path/test/login中/代表http://localhost]

如果对比成功,则跳转成功

4种方法:

1:缺省项目名

2:/获取前台路径

3:通过el表达式获取项目名称

4:通过basePath 获取路径

 

  

   



el 表达式

   <%--   
用户名: 密 码:
--%>

<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

  
用户名: 密 码:

你可能感兴趣的:(sturts2的路径)