Weblogic6.1中关于WEB控件配置的问题!!SOS
web.xml中:
<servlet-mapping>
<servlet-name>ShoppingServlet</servlet-name>
<url-pattern>/ShoppingServlet</url-pattern>
</servlet-mapping>
在JSP中引用到这个SERVLET:
<form name="shoppingForm"
action="ShoppingServlet"
method="POST">
这样用没有任何问题。但是我在JSP中改成:
<form name="shoppingForm"
action="/ShoppingServlet"
method="POST">
就出问题了。
这到底是怎么回事?<url-pattern>/ShoppingServlet</url-pattern>到底是什么意思??