配置文档
配置文档
api.name
用于设置API名称
缺省情况下, 默认使用api注释的第一行作为API的名称
Demo
# read api name from tag `api.name`
api.name=#api.name
demo
api.status
标记接口 status
默认推荐配置
api.status=#status
demo
api.tags
标记接口 tag
添加对swagger @ApiOperation支持
api.tag=@io.swagger.annotations.ApiOperation#tags
demo
class.is.ctrl
默认的只会导出注解有 org.springframework.stereotype.Controller
或org.springframework.web.bind.annotation.RestController
的类中的api.
当有导出未注解 org.springframework.stereotype.Controller
或org.springframework.web.bind.annotation.RestController
的类中的api的需求时,可以配置此规则
允许导出所有类中的api
class.is.ctrl=true
允许导出注释有ctrl
类中的api
@ctrl
来控制哪些类会包含api
, 可以配置为:class.is.ctrl=#ctrl
demo
class.prefix.path
设置API请求前缀
默认推荐配置
#Resolve spring properties
###set ignoreUnresolved = true
class.prefix.path=${server.servlet.context-path}
###set ignoreUnresolved = false
使用推荐配置后,可识别如下spring配置
server.servlet.context-path=/demo
server:
servlet:
context-path: /demo
自定义demo
class.prefix.path=/demo
constant.field.ignore
忽略常量字段
默认推荐配置
#ignore serialVersionUID
constant.field.ignore=serialVersionUID
#ignore serialVersionUID
constant.field.ignore=groovy:it.name()=="serialVersionUID"
demo
对于如下注释
@see com.itangcent.common.constant.UserTypeConstant
或者
{@link com.itangcent.common.constant.UserTypeConstant}
将被解析为:
枚举: 1,2,3
枚举备注: 1 :管理员 2 :成员 3 :游客
mock: @pick(["1","2","3"])
enum.use.custom
用于设置使用 @see
枚举类型时的默认取值字段
public enum UserType {
//管理员
ADMIN(1, "管理员"),
//成员
MEMBER(2, "成员"),
//游客
GUEST(3, "游客");
private int code;
private String desc;
public int getCode() {
return code;
}
public String getDesc() {
return desc;
}
UserType(int code, String desc) {
this.code = code;
this.desc = desc;
}
}
默认情况
增加配置
@see UserType
时默认使用code
字段作为取值enum.use.custom[com.itangcent.common.constant.UserType]=code
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
type | integer | 非必须 | 用户类型 | 枚举: 1,2,3 枚举备注: 1: 管理员 2: 成员 3: 游客 mock: @pick([1,2,3]) |
统一处理
package com.itangcent.common.constant;
public interface BaseEnum {
Long getCode();
}
UserType
,使其继承BaseEnum
public enum UserType implements BaseEnum {
...
}
BaseEnum
的类默认使用code
字段作为取值enum.use.custom[groovy:it.isExtend("com.itangcent.common.constant.BaseEnum")]=code
enum.use.by.type
默认使用类型一致的字段, 优先级低于 enum.use.custom
public enum UserType {
//管理员
ADMIN(1, "管理员"),
//成员
MEMBER(2, "成员"),
//游客
GUEST(3, "游客");
private int code;
private String desc;
public int getCode() {
return code;
}
public String getDesc() {
return desc;
}
UserType(int code, String desc) {
this.code = code;
this.desc = desc;
}
}
enum.use.by.type=true
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
type | integer | 非必须 | 用户类型 | 枚举: 1,2,3 枚举备注: 1: 管理员 2: 成员 3: 游客 mock: @pick([1,2,3]) |
enum.use.ordinal
用于设置使用 @see
枚举类型时的默认使用ordinal
作为取值
优先级低于 enum.use.custom