- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在此代码中,当此方法返回 Response.noContent.build(); 时,我可以使用 Status.class @ApiOperation 吗?
@DELETE
@Path("/property/{id}")
@ApiOperation(value = "Delete", notes = "Delete a persisted property from data source.", response = Status.class??)
public Response delete(String id){
...
...
return Response.noContent().build();
}
最佳答案
您可以省略 response
部分,它将使用 Void.class
默认情况下。来自docs :
public abstract Class<?> response
The response type of the operation. In JAX-RS applications, the return type of the method would automatically be used, unless it is
javax.ws.rs.core.Response
. In that case, the operation return type would default tovoid
as the actual response type cannot be known. (emphasis mine)Setting this property would override any automatically-derived data type.
If the value used is a class representing a primitive (
Integer
,Long
, ...) the corresponding primitive type will be used.Default:
java.lang.Void.class
关于java - 我可以在 Swagger 的 @ApiOperation 中回应什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31550325/
使用 @ApiOperation 记录操作时,有 notes 属性用于操作的详细描述。但是在注释中放置很长的描述会变得很麻烦并且难以维护。 是否有更优雅的选项来引用外部文件或其他内容? 最佳答案 现在
我使用 springfox-swagger2 作为 Spring MVC REST API。一切都与 swagger 配合良好,但我的问题是我无法向我的 swagger 文档添加附加信息。 Maven
我想大肆地显示响应,这是一个通用类。但它不会将类的类型作为响应。 @ApiOperation(value = "Get user name", response = ResponseWrapper.c
在此代码中,当此方法返回 Response.noContent.build(); 时,我可以使用 Status.class @ApiOperation 吗? @DELETE @Path
我在 Java 类中有一个方法,其签名如下所示,我想为其添加 Swagger Rest 文档。 public List> getMyCustomClasses(String id){ // } 我想知
我有一个 Jax-RS Web 服务,我使用 Swagger 对其进行记录。现在我想检查每个方法的@ApiOperation注释中的参数以进行一些过滤。 @GET @ApiOperation(valu
我有一个简单的rest api,实现了单个 GET 方法。我想使用 springfox 和 swagger 来记录它。一切都很简单,只需等待示例响应即可。 默认情况下,springfox 使用基于反射
我正在使用 swagger 来记录我的 Play-Scala 应用程序。 我的 Controller 如下: @Api(value = "/people") class PersonControlle
我目前正在将 Swagger(1.5.7 版中的 swagger-jaxrs 工件)集成到我们现有的 JAX-RS REST 应用程序中。添加 Swagger 后,我将 @Api 注释添加到我们的接口
我是一名优秀的程序员,十分优秀!