国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術(shù)|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務(wù)器之家 - 編程語言 - Java教程 - Swagger中@ApiIgnore注解的使用詳解

Swagger中@ApiIgnore注解的使用詳解

2022-02-24 00:48周公解碼 Java教程

這篇文章主要介紹了Swagger中@ApiIgnore注解的使用,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教

Swagger @ApiIgnore注解的使用

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

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

?
1
2
3
4
5
6
7
@ApiIgnore
@Api(tags = {"Xxx控制類"})
@RestController
@RequestMapping("/xxx")
public class XxxController {
  ......
}

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

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

當(dāng)hidden為true時,該類隱藏。

2、當(dāng)作用在方法上時,方法將被忽略

?
1
2
3
4
5
6
7
8
9
@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屬性:

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

當(dāng)hidden為true時,該方法隱藏。

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

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

補充:

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

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

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

(2)使用@JsonIgnore注解:

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

包名:

?
1
import  com.fasterxml.jackson.annotation.JsonIgnore;

swagger 注解的使用解析

Swagger簡介

由于架構(gòu)革新,進入了前后端分離,服務(wù)端只需提供RESTful API的時代。

而構(gòu)建RESTful API會考慮到多終端的問題,這樣就需要面對多個開發(fā)人員甚至多個開發(fā)團隊。為了減少與其他團隊對接的溝通成本,我們通常會寫好對應(yīng)的API接口文檔。

從最早開始的word文檔,到后續(xù)的showdoc,都能減少很多溝通成本,但隨之帶來的問題也比較麻煩。在開發(fā)期間接口會因業(yè)務(wù)的變更頻繁而變動,如果需要實時更新接口文檔,這是一個費時費力的工作。

為了解決上面的問題,Swagger應(yīng)運而生。他可以輕松的整合進框架,并通過一系列注解生成強大的API文檔。他既可以減輕編寫文檔的工作量,也可以保證文檔的實時更新,將維護文檔與修改代碼融為一體,是目前較好的解決方案。

常用注解

  • @Api()用于類;
  • 表示標(biāo)識這個類是swagger的資源
  • @ApiOperation()用于方法;
  • 表示一個http請求的操作
  • @ApiParam()用于方法,參數(shù),字段說明;
  • 表示對參數(shù)的添加元數(shù)據(jù)(說明或是否必填等)
  • @ApiModel()用于類
  • 表示對類進行說明,用于參數(shù)用實體類接收
  • @ApiModelProperty()用于方法,字段
  • 表示對model屬性的說明或者數(shù)據(jù)操作更改
  • @ApiIgnore()用于類,方法,方法參數(shù)
  • 表示這個方法或者類被忽略
  • @ApiImplicitParam() 用于方法
  • 表示單獨的請求參數(shù)
  • @ApiImplicitParams() 用于方法,包含多個 @ApiImplicitParam

代碼示例

1、@Api

?
1
2
3
@Api(value = "用戶博客", tags = "博客接口")
public class NoticeController {
}

2、@ApiOperation

?
1
2
3
4
5
6
@GetMapping("/detail")
@ApiOperation(value = "獲取用戶詳細(xì)信息", notes = "傳入notice" , position = 2)
public R<Notice> detail(Integer id) {
   Notice detail = noticeService.getOne(id);
   return R.data(detail );
}

3、@ApiResponses

?
1
2
3
4
5
6
7
8
@ApiResponses(value = {@ApiResponse(code = 500, msg= "INTERNAL_SERVER_ERROR", response = R.class)})
@GetMapping("/detail")
@ApiOperation(value = "獲取用戶詳細(xì)信息", notes = "傳入notice" , position = 2)
@ApiResponses(value = {@ApiResponse(code = 500, msg= "INTERNAL_SERVER_ERROR", response = R.class)})
public R<Notice> detail(Integer id) {
   Notice detail = noticeService.getOne(id);
   return R.data(detail );
}

4、@ApiImplicitParams

以分頁代碼進行展示

IPage<Notice> pages = noticeService.page(Condition.getPage(query), Condition.getQueryWrapper(notice, Notice.class));

?
1
2
3
4
5
6
7
8
9
10
@GetMapping("/list")
@ApiImplicitParams({
   @ApiImplicitParam(name = "category", value = "公告類型", paramType = "query", dataType = "integer"),
   @ApiImplicitParam(name = "title", value = "公告標(biāo)題", paramType = "query", dataType = "string")
})
@ApiOperation(value = "分頁", notes = "傳入notice", position = 3)
public R<IPage<Notice>> list(@ApiIgnore @RequestParam Map<String, Object> notice, Query query) {
     IPage<Notice> pages = noticeService.page(Condition.getPage(query), Condition.getQueryWrapper(notice, Notice.class));
   return R.data(pages );
}

5、@ApiParam

?
1
2
3
4
5
6
@PostMapping("/remove")
@ApiOperation(value = "邏輯刪除", notes = "傳入notice", position = 7)
public R remove(@ApiParam(value = "主鍵集合") @RequestParam String ids) {
   boolean temp = noticeService.deleteLogic(Func.toIntList(ids));
   return R.status(temp);
}

6、@ApiModel 與 @ApiModelProperty

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@Data
@ApiModel(value = "BladeUser ", description = "用戶對象")
public class BladeUser implements Serializable {
   private static final long serialVersionUID = 1L;
   @ApiModelProperty(value = "主鍵", hidden = true)
   private Integer userId;
 
   @ApiModelProperty(value = "昵稱")
   private String userName;
 
   @ApiModelProperty(value = "賬號")
   private String account;
 
   @ApiModelProperty(value = "角色id")
   private String roleId;
 
   @ApiModelProperty(value = "角色名")
   private String roleName;
}

7、@ApiIgnore()

?
1
2
3
4
5
6
@ApiIgnore()
@GetMapping("/detail")
public R<Notice> detail(Integer id) {
   Notice detail = noticeService.getOne(id);
   return R.data(detail );
}

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持服務(wù)器之家。

原文鏈接:https://blog.csdn.net/u010250240/article/details/103120635

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 中文在线√天堂 | 国产午夜小视频 | 欧美中文在线 | 亚洲天堂一区 | 国产久| 日韩欧美网站 | 欧美在线操 | 在线观看国产 | 91免费版在线观看 | 黄色网在线看 | 亚洲精品乱码久久久久久金桔影视 | 日日爽夜夜操 | 亚洲国产精品成人女人久久久 | 久久精品一区二区三区中文字幕 | 久久亚洲天堂 | 一级欧美一级日韩 | 日韩精品小视频 | 精品96久久久久久中文字幕无 | 夜夜骚av | 久久国产免费 | 国产精品久久国产精品 | 久热精品在线视频 | 美女一区 | porn在线视频| 日本网站在线免费观看 | 日本久久精品 | 北条麻妃一区二区三区在线观看 | a视频在线观看免费 | 国产黄 | 欧美在线免费视频 | 欧美国产伦久久久久久 | 超碰毛片| 精品小视频 | 欧美精品第一页 | 一级电影在线观看 | 日本末发育嫩小xxxx | 日本网站在线免费观看 | 一级毛毛片 | 免费精品人在线二线三线区别 | 国产精品久久久久久亚洲调教 | 久久精品无码一区二区三区 |