从swagger响应中排除模型或属性

问题描述 投票:7回答:2

我在apache cxf项目中使用了swagger,使用了@Api和@ApiOperations以及@ApiParam注释,并为其余服务生成了api doc。

但我想从Models属性或完整的模块或属性属性中排除一些字段,如EntityTag,StatusType和MediaType等。

怎么做?

我从db获取数据并将其设置为用户对象并将该用户对象传递给JAX-RS响应构建器。

下面是我的DTO对象之一:

  @ApiModel
  public class User{
  private String name;
   private String email;


 @ApiModelProperty(position = 1, required = true, notes = "used to display user name")
 public int getName() {
    return name;
 }

 public void setName(String name) {
    this.name= name;
}

@ApiModelProperty(position = 2, required = true, notes = "used to display user email")
public int getEmail() {
    return email;
}

 public void setEmail(String email) {
    this.email= email;
 }

现在我没有看到Swagger中的User对象字段或属性返回了json格式。

我的服务类方法响应是:

    @GET
    @ApiOperation(value = "xxx", httpMethod = "GET", notes = "user details", response =  Response.class)
   public Response getUserInfo(){
        User userdto = userdaoimpl.getUserDetails();
        ResponseBuilder builder = Response.ok(user, Status.OK), MediaType.APPLICATION_JSON);
        builder.build();
 }


<bean id="swaggerConfig" class="com.wordnik.swagger.jaxrs.config.BeanConfig">
    <property name="resourcePackage" value="com.services.impl" />
    <property name="version" value="1.0.0" />
    <property name="basePath" value="http://localhost:8080/api" />
    <property name="license" value="Apache 2.0 License" />
    <property name="licenseUrl"
        value="http://www.apache.org/licenses/LICENSE-2.0.html" />
    <property name="scan" value="true" />
 </bean>
rest cxf jax-rs swagger
2个回答
22
投票

首先,你应该升级到最新的swagger-core版本,目前是1.3.12(你使用的是旧版本)。

您有3种隐藏属性的方法:

  1. 如果您正在使用JAXB注释,则可以使用@XmlTransient
  2. 如果你使用杰克逊,你可以使用@JsonIgnore
  3. 如果你没有使用它们,或者不想影响模型的一般化/序列化,你可以使用Swagger的@ApiModelProperty's hidden attribute

请记住,您可能需要在getter / setter上设置这些,而不是在属性本身。玩定义,看看哪些适合你。

关于User模型的问题,问题是您没有从@ApiOperation引用它(您也不需要httpMethod属性)。尝试更改如下:

@ApiOperation(value = "xxx", notes = "user details", response =  User.class)

1
投票

您可以排除这样的字段:

@ApiModelProperty(position = 1, required = true, hidden=true, notes = "used to display user name")
© www.soinside.com 2019 - 2024. All rights reserved.