解压在c盘

源代码在线查看: servletcontext.xtp

软件大小: 4683 K
上传用户: xufengping716
关键词: 解压
下载地址: 免注册下载 普通下载 VIP

相关代码

				ServletContext								The ServletContext object is a straight reflection from the				Servlet interface.								The JSP application object is a				ServletContext object.																												Returns the value corresponding to .				Applications can use the attributes to store arbitrary data.																Returns an enumeration of all attribute names.																context.attribute["foo"] = 1				context.attribute["bar"] = 2								for (var name in context.attribute) {				  writeln(name + " : " + context.attribute[name]);				}												foo : 1				bar : 2																								Sets an attribute to an arbitrary value.																Removes an attribute from the context.																Returns the major version of the Servlet API.																Returns the minor version of the Servlet API.																Returns a string describing the servlet engine.																Adds  to the servlet engine's log file.  This is				the preferred way to log errors.															

相关资源