91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

淳安县| 双江| 乐清市| 盐城市| 于田县| 益阳市| 隆昌县| 濉溪县| 南安市| 泾源县| 阳新县| 图片| 潜江市| 平顺县| 雅安市| 赞皇县| 铜川市| 同心县| 桃江县| 绥棱县| 西藏| 阿巴嘎旗| 庄浪县| 汨罗市| 武鸣县| 孝义市| 清苑县| 栾川县| 嫩江县| 中超| 文山县| 南召县| 宣城市| 正阳县| 龙井市| 高青县| 蚌埠市| 博湖县| 江川县| 公主岭市| 长阳|