com.supermap.services.wfs
类 WFSServlet
- java.lang.Object
 - 
- HttpServlet
 - 
- com.supermap.services.wfs.WFSServlet
 
 
 
- 
- 所有已实现的接口:
 - InterfaceContextAware
 
public class WFSServlet extends HttpServlet implements InterfaceContextAware
WFS Servlet。
该类继承自 HttpServlet,主要用于接受客户端发送的有关 WFS 服务的 HTTP 请求,并将 HTTP 响应返回给客户端。
 
- 
- 
构造器概要
构造器 构造器和说明 WFSServlet() 
- 
方法概要
方法 限定符和类型 方法和说明 voidinit(ServletConfig config)初始化。voidservice(HttpServletRequest request, HttpServletResponse response)响应客户端请求。voidsetInterfaceContext(InterfaceContext context)设置 WFS 服务接口上下文。 
 - 
 
- 
- 
方法详细资料
- 
init
public void init(ServletConfig config) throws ServletException初始化。
- 抛出:
 ServletException
 
- 
service
public void service(HttpServletRequest request, HttpServletResponse response)响应客户端请求。
- 参数:
 request客户端发送的有关- WFS 服务的 HTTP 请求信息。response服务器端返回给客户端的- HTTP 响应结果。
 
- 
setInterfaceContext
public void setInterfaceContext(InterfaceContext context)
设置 WFS 服务接口上下文。
- 指定者:
 setInterfaceContext在接口中InterfaceContextAware- 参数:
 contextWFS- 服务接口上下文。
 
 - 
 
 -