java web程序设计
文章平均质量分 54
Peditable
这个作者很懒,什么都没留下…
展开
-
java web学习笔记(javascript继承)
1、对象冒充,不推荐使用 function Parent(username) { this.nameuser = username; this.sayHello() { alert(username); } } function Child(username, password) {原创 2011-11-14 19:42:47 · 758 阅读 · 0 评论 -
java web学习笔记(Jsp内置对象)
JSP共有以下9种基本内置组件: request表示HttpServletRequest对象。它包含了有关浏览器请求的信息,并且提供了几个用于获取cookie, header, 和session数据的有用的方法。 response表示HttpServletResponse对象,网页传回用户端的回应,并提供了几个用于设置送回浏览器的响应的方法(如cookies,头信息等)。原创 2011-11-18 23:05:06 · 829 阅读 · 0 评论 -
java web学习笔记(servlet生命周期)
Servlet生命周期可以分为三个阶段: 1、初始化阶段, 装载servlet容器: -Servlet容器启动的时候会自动装载某些Servlet; -在Serlvet容器启动后,客户端首次向Servlet发送请求的时候会装载Servlet; -Servlet类文件被更新后,也会重新装载Servlet。 当Servlet被装载完后,Servlet容器原创 2011-11-13 16:05:25 · 2820 阅读 · 0 评论 -
(Struts2文件下载)Can not find a java.io.InputStream with the name [inputStream] in the invocation stack
转载自 kaisep 最终编辑 yeyeok 2010-1-22 9:45:03 org.apache.struts2.dispatcher.StreamResult doExecute 严重: Can not find a java.io.InputStream with the name [inputStream] in the invocation stack.转载 2012-03-28 23:58:31 · 1336 阅读 · 0 评论 -
在eclipse中启动maven项目是报错
严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener at o转载 2012-04-12 09:16:46 · 19268 阅读 · 3 评论 -
Can not find a java.io.InputStream with the name [downloadFile] in the invocation stack问题解决
转载自:http://blog.csdn.net/zhqingyun163/article/details/5063778 具体异常是这句话: Can not find a java.io.InputStream with the name [downloadFile] in the invocation stack. Check the tag specified for th转载 2012-05-06 23:00:03 · 8172 阅读 · 1 评论