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

溫馨提示×

溫馨提示×

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

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

swagger怎么返回map字段注釋

發布時間:2021-07-05 10:01:29 來源:億速云 閱讀:2885 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關swagger怎么返回map字段注釋,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

1.效果圖如下:

swagger怎么返回map字段注釋

2.controller層代碼:

 import java.util.HashMap;
import java.util.Map; 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController; 
import com.mengyoou.core.serialize.ResponseMsg; 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses; 
 
@Api(value="返回字段添加注釋信息controller",tags={"返回字段添加注釋信息controller"})
@RestController
public class TestController { 
	@ApiOperation(value="返回字段添加注釋信息", notes="返回字段添加注釋信息")
    @RequestMapping(value={"demo"}, method={RequestMethod.GET})
    @ApiResponses({
    	@ApiResponse(code = 200, message = "ok", response=User.class),
    })
    public ResponseMsg demo() {
    	User user = new User();
    	Map<String, Object> map = new HashMap<>();
    	map.put("user", user);
    	return new ResponseMsg(map);
    } 
}

3.用戶實體的代碼:

  import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;  
@ApiModel(value="登錄成功后返回的個人信息")
@Data
public class User {
	
	    @ApiModelProperty(value="用戶名")
	    private String userName;//用戶名
	    @ApiModelProperty(value="密碼")
	    private String password;//用戶名 
}

4.關鍵點:

swagger怎么返回map字段注釋

接口 Swagger 顯示返回模型的注釋

mark:環境看之前文章

目的:web api controller 調用 asp.net mvc controller,讓swagger里面的返回模型支持注釋

關鍵:對返回消息類的封裝,返回數據為泛型,swagger就能顯示model的注釋了

JsonMsg

/// <summary>
/// 返回消息
/// </summary>
public class JsonMsg<T> where T : class
{
    /// <summary>
    /// 狀態碼
    /// </summary>
    public int code { get; set; }
    /// <summary>
    /// 消息
    /// </summary>
    public string msg { get; set; }
    /// <summary>
    /// 內容
    /// </summary>
    public T obj { get; set; }
    /// <summary>
    /// 圖標
    /// </summary>
    public int icon { get; set; }
    public static JsonMsg<T> OK(T obj, string msg = "成功") 
    {
        return new JsonMsg<T>() { code = 1, msg = msg, obj = obj, icon = 1 };
    }
    public static JsonMsg<T> Error(T obj, string msg = "失敗")
    {
        return new JsonMsg<T>() { code = 0, msg = msg, obj = obj, icon = 1 };
    }
}

OrderDto

public class OrderDto
{
    public string Name { get; set; }
}

HomeController

public JsonResult GetOrderInfo()
{
    var order = new OrderDto { Name = "203022200" };
    return Json(order);
}

HomeAPIController

[AllowAnonymous]
public JsonMsg<OrderDto> testResultDataDesc3()
{
    HomeController controller = GetController<HomeController>();
    var d = (OrderDto)controller.GetOrderInfo().Data;
    return JsonMsg<OrderDto>.OK(d);
}

效果

swagger怎么返回map字段注釋

swagger怎么返回map字段注釋

swagger怎么返回map字段注釋

關于“swagger怎么返回map字段注釋”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

威宁| 沈阳市| 聂荣县| 琼结县| 金塔县| 正蓝旗| 胶州市| 昆明市| 梧州市| 分宜县| 伊川县| 茂名市| 吉木萨尔县| 房产| 报价| 体育| 云林县| 乌恰县| 察雅县| 金川县| 沙田区| 饶河县| 吉木萨尔县| 邹城市| 襄汾县| 延吉市| 札达县| 清远市| 九龙坡区| 正镶白旗| 丽水市| 大安市| 合川市| 额尔古纳市| 乌兰浩特市| 宽甸| 汉中市| 勐海县| 九龙县| 金门县| 忻州市|