# README
spring-web
# Functions
BIND 转换成 BIND 形式的 Web 处理接口.
BodyParam creates a body parameter.
FUNC 标准 Web 处理函数的辅助函数.
GetMethod 返回 method 对应的 HTTP 方法.
HandlerFilter 把 Web 处理接口转换成过滤器.
HeaderParam creates a header parameter, this is always required by default.
HTTP 标准 Http 处理函数的辅助函数.
InvokeHandler 执行 Web 处理函数.
NewBaseWebContainer BaseWebContainer 的构造函数.
NewBindResponse creates a new response instance.
NewDefaultFilterChain DefaultFilterChain 的构造函数.
NewDefaultValidator defaultValidator 的构造函数.
NewDefaultWebMapping defaultWebMapping 的构造函数.
NewMapper Mapper 的构造函数.
NewOperation creates a new operation instance.
NewResponse creates a new response instance.
NewRouter Router 的构造函数,不依赖具体的 WebMapping 对象.
NewSwagger swagger 的构造函数.
NewWebServer WebServer 的构造函数.
PathParam creates a path parameter, this is always required.
ReDoc redoc 响应函数.
ToPathStyle 将 URL 转换为指定风格的表示形式.
Validate 参数校验.
WrapF 标准 Http 处理函数的辅助函数,兼容 gin 写法.
WrapH 标准 Http 处理函数的辅助函数,兼容 gin 写法.
# Constants
No description provided by the author
DefaultWildCardName 默认统配符的名称.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
"CONNECT".
"DELETE".
"GET".
No description provided by the author
"HEAD".
"OPTIONS".
"PATCH".
"POST".
"PUT".
"TRACE".
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
WebContextKey WebContext 和 NativeContext 相互转换的 Key.
# Structs
BaseWebContainer WebContainer 的通用部分.
ContainerConfig Web 容器配置.
DefaultFilterChain 默认的过滤器链条.
No description provided by the author
Mapper 路由映射器.
Operation 封装 *spec.Operation 对象,提供更多功能.
Router 路由分组.
Swagger 封装 spec.Swagger 对象,提供流式调用.
WebServer 一个 WebServer 包含多个 WebContainer.
# Interfaces
Filter 过滤器接口.
FilterChain 过滤器链条接口.
Handler Web 处理接口.
ResponseWriter Override http.ResponseWriter to supply more method.
UrlRegister 路由注册接口.
WebContainer Web 容器.
WebContext 上下文接口,设计理念:为社区中优秀的 Web 服务器提供一个抽象层, 使得底层可以灵活切换,因此在功能上取这些 Web 服务器功能的交集,同时提供获取 底层对象的接口,以便在不能满足用户要求的时候使用底层实现的能力,当然要慎用。.
WebMapping 路由表,Spring-Web 使用的路由规则和 echo 完全相同,并对 gin 做了适配。.
WebValidator 参数校验器接口.