摘要: There are five different types of scripting elementsScripting ElementExampleCommentDirectiveDeclarationScriptletExpressionDirective Taggives special i... 阅读全文
posted @ 2015-10-22 15:08 kakaisgood 阅读(319) 评论(0) 推荐(0) 编辑
摘要: Servlet过滤器方法一个过滤器就是一个Java类,它实现了javax.servlet.Filter 接口。javax.servlet.Filter接口定义了三个方法:序号方法&描述1public void doFilter (ServletRequest, ServletResponse, Fi... 阅读全文
posted @ 2015-10-22 14:18 kakaisgood 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 实例:http://www.runoob.com/jsp/jsp-form-processing.htmlhttp://www.runoob.com/jsp/jsp-writing-filters.html 阅读全文
posted @ 2015-10-22 14:17 kakaisgood 阅读(185) 评论(0) 推荐(0) 编辑
摘要: Setting HTTP Status Code状态码消息描述100Continue只有一部分请求被服务器接收,但只要没被服务器拒绝,客户端就会延续这个请求101Switching Protocols服务器交换机协议200OK请求被确认201Created请求时完整的,新的资源被创建202Accep... 阅读全文
posted @ 2015-10-22 14:07 kakaisgood 阅读(218) 评论(0) 推荐(0) 编辑
摘要: Implicit ObjectDescriptionrequestTheHttpServletRequestobject associated with the request.responseTheHttpServletRequestobject associated with the respo... 阅读全文
posted @ 2015-10-22 13:57 kakaisgood 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 语法描述jsp:include在页面被请求的时候引入一个文件。jsp:useBean寻找或者实例化一个JavaBean。jsp:setProperty设置JavaBean的属性。jsp:getProperty输出某个JavaBean的属性。jsp:forward把请求转到一个新的页面。jsp:plu... 阅读全文
posted @ 2015-10-22 12:01 kakaisgood 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 编译阶段:servlet容器编译servlet源文件,生成servlet类初始化阶段:加载与JSP对应的servlet类,创建其实例,并调用它的初始化方法执行阶段:调用与JSP对应的servlet实例的服务方法销毁阶段:调用与JSP对应的servlet实例的销毁方法,然后销毁servlet实例编译J... 阅读全文
posted @ 2015-10-22 11:24 kakaisgood 阅读(169) 评论(0) 推荐(0) 编辑