com.supermap.services.wmts

类 WMTSServlet

  • java.lang.Object
    • HttpServlet
      • com.supermap.services.wmts.WMTSServlet
  • 所有已实现的接口:
    InterfaceContextAware


    public class WMTSServlet
    extends HttpServlet
    implements InterfaceContextAware
    

    WMTS Servlet。

    该类继承自 HttpServlet,主要用于接受客户端发送的有关 WMTS 服务的 HTTP 请求,并将 HTTP 响应返回给客户端。

    • 构造器概要

      构造器 
      构造器和说明
      WMTSServlet() 
    • 方法概要

      方法 
      限定符和类型 方法和说明
      void destroy()
      销毁对象。
      void init(ServletConfig config)
      初始化。
      void service(HttpServletRequest httpServletRequest, HttpServletResponse response)
      从请求对象 request 中获取到具体的请求参数,根据请求参数生成响应内容并放入响应对象中。
      void setInterfaceContext(InterfaceContext context)
      设置服务接口上下文。
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • WMTSServlet

        public WMTSServlet()
        
    • 方法详细资料

      • init

        public void init(ServletConfig config)
                  throws ServletException
        

        初始化。

        抛出:
        ServletException
      • service

        public final void service(HttpServletRequest httpServletRequest,
                   HttpServletResponse response)
        

        从请求对象 request 中获取到具体的请求参数,根据请求参数生成响应内容并放入响应对象中。

        参数:
        request - 客户端发送的有关 WMTS 服务的 HTTP 请求对象。
        response - 服务器返回的 HTTP 响应结果对象。
      • destroy

        public void destroy()
        

        销毁对象。