路径问题

在struts链接路径中是根据action的路径来决定的而不是jsp路径。如果对路径不熟悉最简单的一招就是全部使用绝对路径:

在新建jsp文件时Myeclipse会自动为我们生成一个绝对路径的代码:

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

 basePath:http://localhost:8080/webapp/

1.我们只要在需要连接的地方加上:<%= basePath%>index.jsp即可:

 

 

2.如果在页面上加上了这一句:<base href="<%=basePath%>" />

则MyEclipse自动会给我们需要连接的地方加上basePath所以所有的连接地方只需要这样写:index.jsp

你可能感兴趣的:(jsp,MyEclipse,struts)