给HttpServletRequest传参的方法

1.一般使用

request.getParameter("xxx");

从jsp表单中读取xxx对应值

2.也可以不用从jsp表单获取,在url中附带参数,如:

http://localhost:8080/controller/login.scaction?name=css&password=123

实现:给login.scaction传两个参数:name=css,password=123
格式:http://xxxxx/abc?param1=a¶m2=b¶m3=c
第一个参数前面加?第二个参数前面加&。如果还有参数,就再后面加&
要求:HttpServlet使用doGet()方式

3.若HttpServlet使用doPost()方式,需要用插件,chrome有个postman插件

你可能感兴趣的:(Java,j2ee)