@Repeatable(value=Routers.class) @Target(value={TYPE,METHOD}) @Retention(value=RUNTIME) @Documented public @interface Router
Modifier and Type | Optional Element and Description |
---|---|
HttpContentType |
contentType
Content-Type 配置
|
boolean |
deprecated
接口是否已经被废弃,默认是false。
|
String |
description
接口功能详细说明
|
boolean |
hide
是否隐藏接口。
|
String[] |
method
请求的方法
|
String |
path
请求的 URL
|
boolean |
singleton
定义路由类是否采用单例模式
在类上则标识类会被提前实例化, 在路由方法上,则使用提前实例化的类进行调用
在方法上无效
|
String |
summary
接口功能简述
|
String[] |
tags
标签
|
String |
value |
public abstract String path
public abstract String value
public abstract String[] method
public abstract HttpContentType contentType
public abstract boolean singleton
public abstract String[] tags
public abstract String summary
public abstract String description
Copyright © 2020 Voovan. All rights reserved.