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)
设置服务接口上下文。
|
public void init(ServletConfig config) throws ServletException
初始化。
ServletException
public final void service(HttpServletRequest httpServletRequest, HttpServletResponse response)
从请求对象 request 中获取到具体的请求参数,根据请求参数生成响应内容并放入响应对象中。
request
- 客户端发送的有关 WMTS 服务的 HTTP 请求对象。response
- 服务器返回的 HTTP 响应结果对象。public void setInterfaceContext(InterfaceContext context)
设置服务接口上下文。
setInterfaceContext
在接口中 InterfaceContextAware
context
- 服务接口上下文。public void destroy()
销毁对象。