获取上下文路径,get和post

问题集

request.getContextPath()获取上下文路径

超级实用的小技巧

《form action=”<%=request.getContextPath() %>/loginServlet” method=”post”>

Servlet添加到web。xml中的信息

其中url中的值要与上面相对应。

LoginServlet
com.zsz.develop.servlet.LoginServlet

<servlet-mapping>
    <servlet-name>LoginServlet</servlet-name>
    <url-pattern>/loginServlet</url-pattern>
</servlet-mapping>

get和post