- 浏览: 16587756 次
- 性别:
- 来自: 济南
最新评论
-
wu1236:
ef0793cd94337324b6fefc4c9474af5 ...
Android ApiDemos示例解析(87):Media->MediaPlayer -
77219634:
0127bf2236bee4dd1f632ce430f1af1 ...
本博客文章都为转载,没有任何版权! -
77219634:
0127bf2236bee4dd1f632ce430f1af1 ...
VPLEX - EMC的RAC -
77219634:
0127bf2236bee4dd1f632ce430f1af1 ...
qTip2 Show -
77219634:
0127bf2236bee4dd1f632ce430f1af1 ...
SecureCRT中文乱码、复制粘贴乱码解决办法(修改版)
<!-- ========= START OF TOP NAVBAR ======= --><!-- -->
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->javax.servlet
All Implemented Interfaces:
ServletRequest
Direct Known Subclasses:
HttpServletRequestWrapper
public class ServletRequestWrapper
extends Object
implements ServletRequest
Since:
v 2.3
See Also:
<!-- ========== METHOD SUMMARY =========== --><!-- -->
<!-- -->
<!-- -->
Creates a ServletRequest adaptor wrapping the given request object. 创建一个ServletRequest适配器,包装指定的请求对象。
Throws:
<!-- ============ METHOD DETAIL ========== --><!-- -->
<!-- -->
Return the wrapped request object. 返回包装的请求对象。
<!-- -->
Sets the request object being wrapped. 设置被包装的请求对象。
Throws:
<!-- -->
The default behavior of this method is to call getAttribute(String name) on the wrapped request object. 该方法的默认行为是调用经过包装的请求对象的getAttribute(String name)。
Specified by:
Parameters:
Returns:
an
<!-- -->
The default behavior of this method is to return getAttributeNames() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getAttributeNames()。
Specified by:
Returns:
an
<!-- -->
The default behavior of this method is to return getCharacterEncoding() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getCharacterEncoding()。
Specified by:
Returns:
a
<!-- -->
The default behavior of this method is to set the character encoding on the wrapped request object. 该方法的默认行为是设置经过包装的请求对象的字符编码。
Specified by:
Parameters:
Throws:
<!-- -->
The default behavior of this method is to return getContentLength() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getContentLength()。
Specified by:
Returns:
an integer containing the length of the request body or -1 if the length is not known 整数,表示请求体的长度,长度未知则为-1
<!-- -->
The default behavior of this method is to return getContentType() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getContentType()。
Specified by:
Returns:
a
<!-- -->
The default behavior of this method is to return getInputStream() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getInputStream()。
Specified by:
Returns:
a
Throws:
<!-- -->
The default behavior of this method is to return getParameter(String name) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getParameter(String name)。
Specified by:
Parameters:
Returns:
a
See Also:
<!-- -->
The default behavior of this method is to return getParameterMap() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getParameterMap()。
Specified by:
Returns:
an immutable java.util.Map containing parameter names as keys and parameter values as map values. The keys in the parameter map are of type String. The values in the parameter map are of type String array. 一个不变的java.util.Map,key为参数名称,map值为参数值。 在参数map中key为String类型,值为String数组类型。
<!-- -->
The default behavior of this method is to return getParameterNames() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getParameterNames()。
Specified by:
Returns:
an
<!-- -->
The default behavior of this method is to return getParameterValues(String name) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getParameterValues(String name)。
Specified by:
Parameters:
Returns:
an array of
See Also:
<!-- -->
The default behavior of this method is to return getProtocol() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getProtocol()。
Specified by:
Returns:
a
<!-- -->
The default behavior of this method is to return getScheme() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getScheme()。
Specified by:
Returns:
a
<!-- -->
The default behavior of this method is to return getServerName() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getServerName()。
Specified by:
Returns:
a
<!-- -->
The default behavior of this method is to return getServerPort() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getServerPort()。
Specified by:
Returns:
an integer specifying the port number 整数,表示端口号
<!-- -->
The default behavior of this method is to return getReader() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getReader()。
Specified by:
Returns:
a
Throws:
See Also:
<!-- -->
The default behavior of this method is to return getRemoteAddr() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRemoteAddr()。
Specified by:
Returns:
a
<!-- -->
The default behavior of this method is to return getRemoteHost() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRemoteHost()。
Specified by:
Returns:
a
<!-- -->
The default behavior of this method is to return setAttribute(String name, Object o) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的setAttribute(String name, Object o)。
Specified by:
Parameters:
<!-- -->
The default behavior of this method is to call removeAttribute(String name) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的removeAttribute(String name)。
Specified by:
Parameters:
<!-- -->
The default behavior of this method is to return getLocale() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocale()。
Specified by:
Returns:
the preferred
<!-- -->
The default behavior of this method is to return getLocales() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocales()。
Specified by:
Returns:
an
<!-- -->
The default behavior of this method is to return isSecure() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的isSecure()。
Specified by:
Returns:
a boolean indicating if the request was made using a secure channel 布尔值,表示请求是否使用安全通道发出
<!-- -->
The default behavior of this method is to return getRequestDispatcher(String path) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRequestDispatcher(String path)。
Specified by:
Parameters:
Returns:
a
See Also:
<!-- -->
The default behavior of this method is to return getRealPath(String path) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRealPath(String path)。
Specified by:
<!-- -->
The default behavior of this method is to return getRemotePort() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRemotePort()。
Specified by:
Since:
2.4
<!-- -->
The default behavior of this method is to return getLocalName() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocalName()。
Specified by:
Returns:
a
Since:
2.4
<!-- -->
The default behavior of this method is to return getLocalAddr() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocalAddr()。
Specified by:
Returns:
a
Since:
2.4
<!-- -->
The default behavior of this method is to return getLocalPort() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocalPort()。
Specified by:
<!-- -->
|
JavaTM 2 Platform Ent. Ed. v1.4 |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> All Classes <noscript></noscript> | |||||||
SUMMARY:NESTED|FIELD|CONSTR|METHOD | DETAIL:FIELD|CONSTR|METHOD |
<!-- ======== START OF CLASS DATA ======== -->
javax.servlet
Class ServletRequestWrapper
java.lang.Object javax.servlet.ServletRequestWrapper
Provides a convenient implementation of the ServletRequest interface that can be subclassed by developers wishing to adapt the request to a Servlet. This class implements the Wrapper or Decorator pattern. Methods default to calling through to the wrapped request object. 提供了一种实现ServletRequest接口的便捷方式,开发人员想采用Servlet请求的话, 可以对其子类化。该类实现了包装或装饰模式。方法默认调用经过包装的请求对象。
ServletRequest
<!-- ======== NESTED CLASS SUMMARY ======== --><!-- =========== FIELD SUMMARY =========== --><!-- ======== CONSTRUCTOR SUMMARY ======== --><!-- -->
Constructor Summary |
ServletRequestWrapper(ServletRequestrequest) Creates a ServletRequest adaptor wrapping the given request object. 创建一个ServletRequest适配器,包装指定的请求对象。 |
Method Summary | |
Object |
getAttribute(Stringname) The default behavior of this method is to call getAttribute(String name) on the wrapped request object. 该方法的默认行为是调用经过包装的请求对象的getAttribute(String name)。 |
Enumeration |
getAttributeNames() The default behavior of this method is to return getAttributeNames() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getAttributeNames()。 |
String |
getCharacterEncoding() The default behavior of this method is to return getCharacterEncoding() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getCharacterEncoding()。 |
int |
getContentLength() The default behavior of this method is to return getContentLength() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getContentLength()。 |
String |
getContentType() The default behavior of this method is to return getContentType() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getContentType()。 |
ServletInputStream |
getInputStream() The default behavior of this method is to return getInputStream() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getInputStream()。 |
String |
getLocalAddr() The default behavior of this method is to return getLocalAddr() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocalAddr()。 |
Locale |
getLocale() The default behavior of this method is to return getLocale() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocale()。 |
Enumeration |
getLocales() The default behavior of this method is to return getLocales() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocales()。 |
String |
getLocalName() The default behavior of this method is to return getLocalName() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocalName()。 |
int |
getLocalPort() The default behavior of this method is to return getLocalPort() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getLocalPort()。 |
String |
getParameter(Stringname) The default behavior of this method is to return getParameter(String name) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getParameter(String name)。 |
Map |
getParameterMap() The default behavior of this method is to return getParameterMap() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getParameterMap()。 |
Enumeration |
getParameterNames() The default behavior of this method is to return getParameterNames() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getParameterNames()。 |
String[] |
getParameterValues(Stringname) The default behavior of this method is to return getParameterValues(String name) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getParameterValues(String name)。 |
String |
getProtocol() The default behavior of this method is to return getProtocol() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getProtocol()。 |
BufferedReader |
getReader() The default behavior of this method is to return getReader() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getReader()。 |
String |
getRealPath(Stringpath) The default behavior of this method is to return getRealPath(String path) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRealPath(String path)。 |
String |
getRemoteAddr() The default behavior of this method is to return getRemoteAddr() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRemoteAddr()。 |
String |
getRemoteHost() The default behavior of this method is to return getRemoteHost() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRemoteHost()。 |
int |
getRemotePort() The default behavior of this method is to return getRemotePort() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRemotePort()。 |
ServletRequest |
getRequest() Return the wrapped request object. 返回包装的请求对象。 |
RequestDispatcher |
getRequestDispatcher(Stringpath) The default behavior of this method is to return getRequestDispatcher(String path) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getRequestDispatcher(String path)。 |
String |
getScheme() The default behavior of this method is to return getScheme() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getScheme()。 |
String |
getServerName() The default behavior of this method is to return getServerName() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getServerName()。 |
int |
getServerPort() The default behavior of this method is to return getServerPort() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的getServerPort()。 |
boolean |
isSecure() The default behavior of this method is to return isSecure() on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的isSecure()。 |
void |
removeAttribute(Stringname) The default behavior of this method is to call removeAttribute(String name) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的removeAttribute(String name)。 |
void |
setAttribute(Stringname, Objecto) The default behavior of this method is to return setAttribute(String name, Object o) on the wrapped request object. 该方法的默认行为是返回经过包装的请求对象的setAttribute(String name, Object o)。 |
void |
setCharacterEncoding(Stringenc) The default behavior of this method is to set the character encoding on the wrapped request object. 该方法的默认行为是设置经过包装的请求对象的字符编码。 |
void |
setRequest(ServletRequestrequest) Sets the request object being wrapped. 设置被包装的请求对象。 |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
<!-- ============ FIELD DETAIL =========== --><!-- ========= CONSTRUCTOR DETAIL ======== --><!-- -->
Constructor Detail |
ServletRequestWrapper
public ServletRequestWrapper(ServletRequestrequest)
IllegalArgumentException
- if the request is null 如果请求为null时抛出
Method Detail |
getRequest
public ServletRequest getRequest()
<!-- -->
setRequest
public void setRequest(ServletRequestrequest)
IllegalArgumentException
- if the request is null. 如果请求为null时抛出。
<!-- -->
getAttribute
public Object getAttribute(Stringname)
getAttribute
in interface ServletRequest
name
- a String
specifying the name of the attribute String,表示属性名称 Object
containing the value of the attribute, or null
if the attribute does not exist Object,表示属性值,如果该属性不存在,返回null<!-- -->
getAttributeNames
public Enumeration getAttributeNames()
getAttributeNames
in interface ServletRequest
Enumeration
of strings containing the names of the request's attributes 字符串的枚举,表示请求属性的名称<!-- -->
getCharacterEncoding
public String getCharacterEncoding()
getCharacterEncoding
in interface ServletRequest
String
containing the name of the chararacter encoding, or null
if the request does not specify a character encoding String,表示字符编码名称,如果请求未指定字符编码,返回null<!-- -->
setCharacterEncoding
public void setCharacterEncoding(Stringenc) throws UnsupportedEncodingException
setCharacterEncoding
in interface ServletRequest
enc
- a String
containing the name of the chararacter encoding. String,表示字符编码名称。 UnsupportedEncodingException
- if this is not a valid encoding 如果这是一个无效的编码时抛出
<!-- -->
getContentLength
public int getContentLength()
getContentLength
in interface ServletRequest
<!-- -->
getContentType
public String getContentType()
getContentType
in interface ServletRequest
String
containing the name of the MIME type of the request, or null if the type is not known String,表示请求的MIME类型名称,如果类型未知,返回null<!-- -->
getInputStream
public ServletInputStream getInputStream() throws IOException
getInputStream
in interface ServletRequest
ServletInputStream
object containing the body of the request ServletInputStream对象,表示请求体
IOException
- if an input or output exception occurred 如果发生输入输出异常时抛出
<!-- -->
getParameter
public String getParameter(Stringname)
getParameter
in interface ServletRequest
name
- a String
specifying the name of the parameter String,表示参数名称 String
representing the single value of the parameter String,表示参数的唯一值 ServletRequest.getParameterValues(java.lang.String)
<!-- -->
getParameterMap
public Map getParameterMap()
getParameterMap
in interface ServletRequest
<!-- -->
getParameterNames
public Enumeration getParameterNames()
getParameterNames
in interface ServletRequest
Enumeration
of String
objects, each String
containing the name of a request parameter; or an empty Enumeration
if the request has no parameters String对象的枚举,每一个String为请求参数的名称;如果请求不含参数,返回空枚举<!-- -->
getParameterValues
public String[] getParameterValues(Stringname)
getParameterValues
in interface ServletRequest
name
- a String
containing the name of the parameter whose value is requested String,请求值的参数名称 String
objects containing the parameter's values String对象数组,表示参数的值 ServletRequest.getParameter(java.lang.String)
<!-- -->
getProtocol
public String getProtocol()
getProtocol
in interface ServletRequest
String
containing the protocol name and version number String,表示协议名称和版本号<!-- -->
getScheme
public String getScheme()
getScheme
in interface ServletRequest
String
containing the name of the scheme used to make this request String,表示用来生成请求的模式名称<!-- -->
getServerName
public String getServerName()
getServerName
in interface ServletRequest
String
containing the name of the server String,表示服务器名称<!-- -->
getServerPort
public int getServerPort()
getServerPort
in interface ServletRequest
<!-- -->
getReader
public BufferedReader getReader() throws IOException
getReader
in interface ServletRequest
BufferedReader
containing the body of the request BufferedReader,表示请求体 IOException
- if an input or output exception occurred 如果发生输入输出异常时抛出
ServletRequest.getInputStream()
<!-- -->
getRemoteAddr
public String getRemoteAddr()
getRemoteAddr
in interface ServletRequest
String
containing the IP address of the client that sent the request String,表示发送请求的客户端IP地址<!-- -->
getRemoteHost
public String getRemoteHost()
getRemoteHost
in interface ServletRequest
String
containing the fully qualified name of the client String,表示客户端全名称<!-- -->
setAttribute
public void setAttribute(Stringname, Objecto)
setAttribute
in interface ServletRequest
name
- a String
specifying the name of the attribute String,表示属性名称 o
- the Object
to be stored 要保存的Object<!-- -->
removeAttribute
public void removeAttribute(Stringname)
removeAttribute
in interface ServletRequest
name
- a String
specifying the name of the attribute to remove String,指定要删除的属性名称<!-- -->
getLocale
public Locale getLocale()
getLocale
in interface ServletRequest
Locale
for the client 客户端采用的Locale<!-- -->
getLocales
public Enumeration getLocales()
getLocales
in interface ServletRequest
Enumeration
of preferred Locale
objects for the client 客户端采用的Locale对象枚举<!-- -->
isSecure
public boolean isSecure()
isSecure
in interface ServletRequest
<!-- -->
getRequestDispatcher
public RequestDispatcher getRequestDispatcher(Stringpath)
getRequestDispatcher
in interface ServletRequest
path
- a String
specifying the pathname to the resource. If it is relative, it must be relative against the current servlet. String,表示资源路径名。如果是相对的,必须相对于当前servlet。 RequestDispatcher
object that acts as a wrapper for the resource at the specified path, or null
if the servlet container cannot return a RequestDispatcher RequestDispatcher对象,作为指定路径的资源包装器,如果servlet容器不能返回RequestDispatcher, 那么返回null
RequestDispatcher
, ServletContext.getRequestDispatcher(java.lang.String)
<!-- -->
getRealPath
public String getRealPath(Stringpath)
getRealPath
in interface ServletRequest
<!-- -->
getRemotePort
public int getRemotePort()
getRemotePort
in interface ServletRequest
<!-- -->
getLocalName
public String getLocalName()
getLocalName
in interface ServletRequest
String
containing the host name of the IP on which the request was received. String,表示收到请求的IP主机名。 <!-- -->
getLocalAddr
public String getLocalAddr()
getLocalAddr
in interface ServletRequest
String
containing the IP address on which the request was received. String,表示收到请求的IP地址。 <!-- -->
getLocalPort
public int getLocalPort()
getLocalPort
in i
相关推荐
当你遇到“找不到javax.servlet.*”这样的错误时,通常是因为你的项目缺少了这个库,所以需要引入`javax.servlet.jar`来解决问题。 1. **Java Servlet简介** Java Servlet是Java平台上的一个标准,用于扩展服务器...
javax.servlet.ServletRequestWrapper.class javax.servlet.ServletResponseWrapper.class javax.servlet.ServletRequestListener.class javax.servlet.UnavailableException.class javax.servlet....
javax.servlet-api-***.jar中文文档.zip,java,javax.servlet-api-***.jar,javax.servlet,javax.servlet-api,***,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,javax,servlet,api,中文API文档,手册,开发...
包含翻译后的API文档:javax.servlet-3.0.0.v201112011016-javadoc-API文档-中文(简体)版.zip; Maven坐标:org.eclipse.jetty.orbit:javax.servlet:3.0.0.v201112011016; 标签:eclipse、jetty、orbit、javax、...
javax.servlet-api-***.jar中文文档.zip,java,javax.servlet-api-***.jar,javax.servlet,javax.servlet-api,***,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,javax,servlet,api,中文API文档,手册,开发...
javax.servlet-api-***.jar中文文档.zip,java,javax.servlet-api-***.jar,javax.servlet,javax.servlet-api,***,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,javax,servlet,api,中文API文档,手册,开发...
包含翻译后的API文档:javax.servlet-api-4.0.0-javadoc-API文档-中文(简体)版.zip; Maven坐标:javax.servlet:javax.servlet-api:4.0.0; 标签:javax、servlet、api、中文文档、jar包、java; 使用方法:解压翻译...
包含翻译后的API文档:javax.servlet-api-4.0.1-javadoc-API文档-中文(简体)-英语-对照版.zip; Maven坐标:javax.servlet:javax.servlet-api:4.0.1; 标签:javax、servlet、api、jar包、java、中英对照文档; 使用...
包含翻译后的API文档:javax.servlet-3.0.0.v201112011016-javadoc-API文档-中文(简体)-英语-对照版.zip; Maven坐标:org.eclipse.jetty.orbit:javax.servlet:3.0.0.v201112011016; 标签:eclipse、jetty、orbit、...
在Java Web开发中,`javax.servlet.jar`和`javax.servlet.jsp.jar`是两个非常重要的库文件,它们分别提供了Servlet和JSP(JavaServer Pages)的核心API。这两个库是开发基于Java的Web应用程序不可或缺的部分,特别是...
因此,"javax.servlet.jar"和"javax.servlet.jsp.jar"这两个JAR文件在EJB中是默认不包含的,需要单独引入。这两个库是Java Servlet和JavaServer Pages(JSP)技术的基础,对于构建基于Java的Web应用程序至关重要。 ...
javax.servlet JAR包,解决找不到 import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; jar包问题
在Java编程环境中,`javax.servlet.jar` 是一个非常重要的库,它包含了Servlet和JSP(JavaServer Pages)的核心API,是开发Web应用程序的基础组件。这个包由Java EE(Enterprise Edition)标准提供,允许开发者创建...
在IT行业中,尤其是在Java Web开发领域,`javax.servlet-api`和`javax.el`库是至关重要的组件。这些库主要用于实现Servlet规范和表达式语言(EL)功能,它们为开发人员提供了与服务器交互以及处理HTTP请求的能力。...
包含翻译后的API文档:javax.servlet-api-4.0.0-javadoc-API文档-中文(简体)-英语-对照版.zip; Maven坐标:javax.servlet:javax.servlet-api:4.0.0; 标签:javax、servlet、api、中英对照文档、jar包、java; 使用...
文件中包含javax.servlet-api-3.0.1.jar,javax.servlet-api-3.1.0.jar,javax.servlet-api-4.0.0.jar,用来处理java项目运行中找不到servlet JAR的问题,需要的朋友可以下载
在Java Web开发中,`javax.servlet-api-3.1.0.jar`是一个至关重要的组件,它代表了Servlet API的3.1.0版本,是实现服务器端动态网页处理的核心库。Servlet API是Java EE规范的一部分,由Java Community Process (JCP...
在Java服务器页面(JSP)技术中,`javax.servlet.jsp.tagext`包是核心组件之一,它提供了用于创建自定义标签库(Tag Libraries)的接口和类。自定义标签是JSP的一种强大特性,允许开发者将复杂的逻辑封装到可重用的...
javax.servlet的jar包是Java Web开发中不可或缺的一部分,它提供了Servlet和JSP(JavaServer Pages)的核心API,使得开发者能够创建动态web应用程序。这个jar包是Java Servlet规范的一部分,由Java Community ...
javax.servlet.jsp_2.0.0.v201101211617.jar,javax.,servlet,jsp