spring3 form表单提交后action的uri路径没有自动加上tomcat中的<Context path="/myweb" 路径
form表单完整的请求路径是http://localhost:8080/myweb/admin/picSave但提交后变成了http://localhost:8080/a...
form表单完整的请求路径是http://localhost:8080/myweb/admin/picSave
但提交后变成了http://localhost:8080/admin/picSave。 少了tomcat的 Context虚拟路径。
附上我的web.xml servlet配置
<servlet>
<servlet-name>gsappServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/appServlet/servlet-context.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>gsappServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
请告诉我哪里错了。谢谢 展开
但提交后变成了http://localhost:8080/admin/picSave。 少了tomcat的 Context虚拟路径。
附上我的web.xml servlet配置
<servlet>
<servlet-name>gsappServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/appServlet/servlet-context.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>gsappServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
请告诉我哪里错了。谢谢 展开
展开全部
form表单的路径不用写全的,你就直接写从classpath开始的相对路径就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
最好是在form表单的action处加上完整路径如
<form name="form1" action ="<%=request.getContentPath()%>/admin/picSave">
如果你用的是el和jstl的话
<form name="form1" action ="${pageContext.request.contextPath}/admin/picSave">
这样子就不会出现路径不清的问题。
<form name="form1" action ="<%=request.getContentPath()%>/admin/picSave">
如果你用的是el和jstl的话
<form name="form1" action ="${pageContext.request.contextPath}/admin/picSave">
这样子就不会出现路径不清的问题。
来自:求助得到的回答
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询