码迷,mamicode.com
首页 >  
搜索关键字:httpservletrequest    ( 1478个结果
学通javaweb 24堂课 学习笔记
17.01:简单配置控制器1、一个controllerprotected ModelAndView handleRequestInternal(HttpServletRequest request,HttpServletResponse response) throws Exception {ret...
分类:编程语言   时间:2014-10-15 19:10:11    阅读次数:156
maven 项目提示找不到javax.servlet.xxx问题解决
最近项目中需要用到javax.servlet.http.HttpServletRequest类,发现IDEA默认的没jar包,尝试了以下解决办法: ?1. 直接在项目里的libraries里面添加servlet-api.jar和jsp-api.jar的话虽然不提示错误了,但是MAVEN编译...
分类:编程语言   时间:2014-10-13 16:24:10    阅读次数:2083
struts2-解耦方式获取Servlet API
2.获取HttpServletRequest实现:ServletRequestAware借口publicvoidsetServletRequest(HttpServletRequestrequest){this.request=request;}3.获取HttpServletResponse实现:ServletResponseAwarepublicvoidsetServletResponse(HttpServletResponseresponse){this.response=respon..
分类:Windows程序   时间:2014-10-13 16:20:30    阅读次数:163
文件下载
public void downLoadApplication(HttpServletRequest request, HttpServletResponse response) { // 项目里路径 String path = request.getRealPath("/static/temp.....
分类:其他好文   时间:2014-10-10 16:53:24    阅读次数:132
Ajax请求访问action判断文件是否存在
action中的写法: public ActionForward fileIsExsit(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { String url = request.getParameter("loadFile"); File...
分类:其他好文   时间:2014-10-10 14:24:34    阅读次数:147
Caused by: java.lang.NoSuchMethodError:javax.servlet.http.HttpServletRequest.getServletContext()L
在做项目的时候,出现Caused by: java.lang.NoSuchMethodError: javax.servlet.http.HttpServletRequest.getServletContext()L这个问题,也就是使用request.getServletContext().getRealPath("/")这个报错,感觉好郁闷,看了别人写的文章,可能是tomcat版本过低,我之前用...
分类:编程语言   时间:2014-10-09 19:30:27    阅读次数:213
URI和URL的区别
这两天在写代码的时候,由于涉及到资源的位置,因此,需要在Java Bean中定义一些字段,用来表示资源的位置,比如:imgUrl,logoUri等等。但是,每次定义的时候,心里都很纠结,是该用imgUrl还是imgUri呢?同样的,另外一个问题:String HttpServletRequest.g...
分类:其他好文   时间:2014-10-09 18:47:27    阅读次数:197
struts2中ServletRequestAware与RequestAware的区别
1、ServletRequestAware这个接口中的方法是setServletRequest(HttpServletRequest request) 可以获得这次请求的request对象2、RequestAware这个接口中的方法是setRequest(Map request) 它只能够获得这次请...
分类:其他好文   时间:2014-10-09 14:08:13    阅读次数:114
关于支付宝接口整合的几个问题
假设顺利的话非常快就能够弄好,总之依照文档要求来。1. jsp页面能够改成action吗?答案是能够。原来的页面基本不用改,直接复制到action中,开头加上一句HttpServletRequest request = ServletActionContext.getRequest();最后的 ou...
分类:其他好文   时间:2014-10-07 11:24:23    阅读次数:121
9.Struts2在Action中获取request-session-application对象
为避免与Servlet API耦合在一起,方便Action类做单元测试.Struts2对HttpServletRequest、HttpSession、ServletContext进行了封装,构造了三个Map对象来替代这三种对象。注意,这三个对象与Servlet API中的三个对象是相同的。即,在Ac...
分类:移动开发   时间:2014-10-06 18:18:40    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!