码迷,mamicode.com
首页 >  
搜索关键字:httpservletrequest    ( 1478个结果
生成微信小程序码java实现
@Override public ModelAndView onSubmit(HttpServletRequest req, HttpServletResponse res, WxQrCodeForm cmd, BindException err) throws Exception { Simple... ...
分类:微信   时间:2019-04-15 16:03:06    阅读次数:737
Request 请求
Request 请求 HttpServletRequest概述 我们在创建Servlet时会覆盖service()方法,或doGet()/doPost(),这些方法都有两个参数,一个为代表请求的request和代表响应response。 service方法中的request的类型是ServletRe ...
分类:其他好文   时间:2019-04-15 00:48:18    阅读次数:205
HttpServletRequest类
HttpServletRequest类 service方法中的request的类型是ServletRequest,而doGet/doPost方法的request的类型是HttpServletRequest, HttpServletRequest是ServletRequest的子接口,功能和方法更加强 ...
分类:Web程序   时间:2019-04-14 17:51:28    阅读次数:224
兼容各浏览器的文件下载时中文名称乱码的解决方案
public class DownloadServlet extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletExcept ...
分类:其他好文   时间:2019-04-12 10:34:02    阅读次数:140
ssm框架中从controller传值给jsp的方式
第一种方式是 通过session 第二种如下: 如何将controller层值传递到JSP页面 @RequestMapping(value="/result",method=RequestMethod.GET) public String test2(HttpServletRequest reque ...
分类:Web程序   时间:2019-04-11 17:56:15    阅读次数:641
HttpServletRequest获取请求得URL信息
request对象中包含的是请求信息,当我们在浏览器地址栏上输入:http://localhost:8080/Example/AServlet?username=zhangsan,这段地址也会作为请求信息封装在request对象中,request对象必然会提供相关的方法来获取这些请求信息,这些信息其 ...
分类:Web程序   时间:2019-04-11 16:17:36    阅读次数:447
【异常】idea执行Main方法出现 Exception in thread "main" java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest
一、异常复现步骤 1)首先得是一个Spring MVC项目 注:Spring Boot项目有内置的web 容器,不会出现该问题 2)main方法存在于使用HttpServletRequest类的类中 3)项目POM中引入有javax.servlet-api坐标或没有 4)执行Main方法出现以下异常 ...
分类:编程语言   时间:2019-04-09 00:20:51    阅读次数:1081
cookie的使用
cookie的使用 通过简单的登录验证,保存用户Cookie, 并在第二次访问登录时判断Cookie是否存在,从而区别新旧用户。 实验结果 Servlet doGet方法: protected void doGet(HttpServletRequest request, HttpServletRes ...
分类:其他好文   时间:2019-04-03 20:36:16    阅读次数:183
springmvc下载
@RequestMapping("/downloadTemplate3.action") @ResponseBody public void downloadTemp(HttpServletResponse response,HttpServletRequest request) throws IO... ...
分类:编程语言   时间:2019-04-02 12:47:04    阅读次数:194
HttpServletRequest中读取HTTP请求的body
背景 Spring MVC 等框架用久了之后,发现对于POST请求里面如果不使用@RequestBody 好像很难获得POST的body。 HTTP请求中的是字符串数据 字符串读取 二进制读取 void binaryReader(HttpServletRequest request) { intle ...
分类:Web程序   时间:2019-04-02 12:35:55    阅读次数:135
1478条   上一页 1 ... 18 19 20 21 22 ... 148 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!