Struts 2 之path路径问题

path这里其实用myeclipse自动生成的:

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

和<base href="<%=basePath%>">标签就行了,使用绝对路径来访问!

Struts 2 之path路径问题_第1张图片

你可能感兴趣的:(struts)