中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Swagger中@ApiIgnore注解怎么用

發布時間:2021-10-21 09:03:55 來源:億速云 閱讀:1135 作者:小新 欄目:開發技術

這篇文章主要介紹了Swagger中@ApiIgnore注解怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

Swagger @ApiIgnore注解的使用

@ApiIgnore 可以用在類、方法上,方法參數中,用來屏蔽某些接口或參數,使其不在頁面上顯示。

1、作用在類上時,整個類都會被忽略

@ApiIgnore
@Api(tags = {"Xxx控制類"})
@RestController
@RequestMapping("/xxx")
public class XxxController {
  ......
}

隱藏某個類還可以用@Api注解自帶的hidden屬性:

@Api(value = "xxx", tags = "xxx",hidden = true)

當hidden為true時,該類隱藏。

2、當作用在方法上時,方法將被忽略

@ApiIgnore
@ApiOperation(value = "xxx", httpMethod = "POST", notes = "xxx")
@ApiImplicitParams({
  @ApiImplicitParam(name = "xxx", value = "xxx", paramType = "query", dataType = "String", required = true)
})
@PostMapping("/xxx")
public Result importCarryEquExcel(String xxx) {
    ......
}

隱藏某個方法還可以用@APIOperation注解自帶的hidden屬性:

@ApiOperation(value = "xxx", httpMethod = "GET", notes = "xxx",hidden = true)

當hidden為true時,該方法隱藏。

3、作用在參數上時,單個具體的參數會被忽略

public String abc(@ApiIgnore String a, String b, String c){
    return "a" + "b" + "c";
  }

補充:

4、 在實體類中忽略不需要字段的方式

(1)用@ApiModelProperty注解自帶的hidden屬性:

@ApiModelProperty(value = "xxxid", required = true,hidden = true)
    private Long id;

(2)使用@JsonIgnore注解:

@ApiModelProperty(value = "xxxid", required = true)
    @JsonIgnore
    private Long id;

包名:

import  com.fasterxml.jackson.annotation.JsonIgnore;

Swagger中的常用注解

使用swagger時

  • @ApiOperation表示生成API文檔

  • @Apiignore表示忽略生成

@ApiIgnore 可以用在類、方法上,方法參數中,用來屏蔽某些接口或參數,使其不在頁面上顯示。

1、作用在類上時,整個類都會被忽略

@ApiIgnore
@Api(tags = {"Xxx控制類"})
@RestController
@RequestMapping("/xxx")
public class XxxController {
        ......
}

隱藏某個類還可以用@Api注解自帶的hidden屬性:

@Api(value = "xxx", tags = "xxx",hidden = true)
當hidden為true時,該類隱藏

2、當作用在方法上時,方法將被忽略

@ApiIgnore
@ApiOperation(value = "xxx", httpMethod = "POST", notes = "xxx")
@ApiImplicitParams({
        @ApiImplicitParam(name = "xxx", value = "xxx", paramType = "query", dataType = "String", required = true)
})
@PostMapping("/xxx")
public Result importCarryEquExcel(String xxx) {
                ......
}

隱藏某個方法還可以用@APIOperation注解自帶的hidden屬性

@ApiIgnore
@ApiOperation(value = "xxx", httpMethod = "POST", notes = "xxx")
@ApiImplicitParams({
        @ApiImplicitParam(name = "xxx", value = "xxx", paramType = "query", dataType = "String", required = true)
})
@PostMapping("/xxx")
public Result importCarryEquExcel(String xxx) {
                ......
}

隱藏某個方法還可以用@APIOperation注解自帶的hidden屬性:

@ApiOperation(value = "xxx", httpMethod = "GET", notes = "xxx",hidden = true)

當hidden為true時,該方法隱藏

3、作用在參數上時,單個具體的參數會被忽略

public String abc(@ApiIgnore String a, String b, String c){
    return "a" + "b" + "c";
  }

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Swagger中@ApiIgnore注解怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

屏东县| 大城县| 梅河口市| 建德市| 长治市| 屯门区| 托里县| 屏山县| 繁峙县| 合水县| 通化县| 峨眉山市| 东台市| 西安市| 河曲县| 张家界市| 洛川县| 亳州市| 平江县| 陇川县| 甘德县| 贵南县| 新源县| 陵水| 浪卡子县| 马关县| 溆浦县| 慈溪市| 晋州市| 仁布县| 新建县| 阳泉市| 平江县| 达拉特旗| 榆中县| 巴中市| 漳州市| 镇安县| 昌邑市| 资讯| 蓝田县|