Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有 doGet 方法实现的 servlet,它从客户端 HttpServletRequest 对象读取任何参数,并且应该在用户键入他的 url 时自动启动。现在,如果 get 请求有参数,它的 url 应该如下所示:
http://myServer.com/myServlet?arg0=1&arg1=2
如果我不需要那个参数,那么执行获取请求的 url 是怎样的?
如果您将使用 doPost() 方法,那么参数将不会出现在 url 中。