我試圖使用Swagger來記錄我的REST API。在此之後example,我批註REST端點是這樣的:隱式參數與播放框架中的Swagger數據類型模型
case class CreateItemRequest(title: String, body: String)
@ApiOperation(value = "Create a new item", httpMethod = "POST", response = classOf[Item])
@ApiImplicitParams(Array(new ApiImplicitParam(dataType = "CreateItemRequest", paramType = "body", name = "body", required = true, allowMultiple = false, value = "The item object to create")))
def create(
@ApiParam(value = "Hash of the user", required = true)
@QueryParam("userhash") userhash: String
)
而且我期待得到「模型」像但我只得到了字符串「CreateItemRequest」作爲數據類型。不是案例類CreateItemRequest的屬性。
問候, 丹尼爾
您是否找到解決方案?我面臨同樣的問題:\ – Sudh 2015-03-25 13:49:03