文件部署一览
工程名:MyApp
一.test.jsp放置于 webroot/test/test.jsp
二.包配置<package name="myPac" namespace="/my" extends...>
三.某个action在myPac包下的配置 <action name="myAction" class...>
1.package中action的result地址配置
<package name="myPac" namespace="/my" extends...>
<action name="myAction" class...>
<result>/test/test.jsp</result>
2.对于jsp文件form中action的配置,统一使用绝对路径.先用myEclipse生成高级JSP页面.然后有
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<head>
<base href="<%=basePath%>">
其中
String path = request.getContextPath();表示上下文根目录 即 /MyApp
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
表示 http :// localhost : 8080 /MyApp/
http://localhost:8080/MyApp/
<base href="<%=basePath%>">表示当前JSP所有URL都是基于 basePath这个路径上.即所有路径都使用绝对路径
<s:form action="myAction" namespcae="/my">action统一加上namespace属性,就不会出错了
其他地方如果要写URL,比如jsp:forward中的.统一使用绝对路径.高级jsp模板没有加上上下文根就自己加上<%=basePath%>这段
工程名:MyApp
一.test.jsp放置于 webroot/test/test.jsp
二.包配置<package name="myPac" namespace="/my" extends...>
三.某个action在myPac包下的配置 <action name="myAction" class...>
1.package中action的result地址配置
<package name="myPac" namespace="/my" extends...>
<action name="myAction" class...>
<result>/test/test.jsp</result>
2.对于jsp文件form中action的配置,统一使用绝对路径.先用myEclipse生成高级JSP页面.然后有
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<head>
<base href="<%=basePath%>">
其中
String path = request.getContextPath();表示上下文根目录 即 /MyApp
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
表示 http :// localhost : 8080 /MyApp/
http://localhost:8080/MyApp/
<base href="<%=basePath%>">表示当前JSP所有URL都是基于 basePath这个路径上.即所有路径都使用绝对路径
<s:form action="myAction" namespcae="/my">action统一加上namespace属性,就不会出错了
其他地方如果要写URL,比如jsp:forward中的.统一使用绝对路径.高级jsp模板没有加上上下文根就自己加上<%=basePath%>这段