码迷,mamicode.com
首页 > 其他好文 > 详细

Geoserver开发之REST是什么?

时间:2021-05-24 14:54:39      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:tps   path   func   UNC   融合   gen   res   sel   err   

技术图片

 本部分提供了概述,关于RESTful服务在GeoServer中是如何工作的。

 https://docs.geoserver.org/stable/en/developer/programming-guide/rest-services/index.html

第一章:Overview概述

GeoServer uses a library known as Restlet for all REST related functionality. Restlet is a lightweight rest framework written in Java that integrates nicely with existing servlet based applications.

GeoServer使用一个类库叫做Restlet来处理所有的REST相关的功能。Restlet是一个轻量级的REST框架,以Java语言写的,与现有的Servlet程序能够完美的融合。

REST dispatching

In GeoServer, all requests under the path /rest are considered a call to a restful service. Every call of this nature is handled by a rest dispatcher. The job of the dispatcher is to route the request to the appropriate end point. This end point is known as a restlet.

技术图片

Restlets are loaded from the spring context, and therefore are pluggable.

Restlets

restlet is the generic entity which handles calls routed by the dispatcher, and corresponds to the class org.restlet.Restlet. One can extend this class directly to implement a service endpoint. Alternatively one can extend a subclass for a specialized purpose. Namely a finder, which is described in the next section.

Finders and resources?

Restful services are often implemented around the concept of resources. A finder is a special kind of restlet whose job is to find the correct resource for a particular request. The resource then serves as the final end point and handles the request. The appropriate classes from the restlet library are org.restlet.Finder and org.restlet.resource.Resource.

Representations

representation, commonly referred to as a format, is the state of a particular state or encoding of a resource. For instance, when a request for a particular resource comes in, a representation of that resource is returned to the client.

                                                                                    PreviousREST Services NextImplementing a RESTful Service

 

Geoserver开发之REST是什么?

标签:tps   path   func   UNC   融合   gen   res   sel   err   

原文地址:https://www.cnblogs.com/2008nmj/p/14781479.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!