我有一个 REST webapp,它使用 Swagger 作为文档,除了 body 参数之外它运行良好。body的所有属性都是可选的
我的 Project 对象是使用 XSD 文件生成的,我确保minOccurs=1 maxOccurs=1 或 unbounded的所有元素以及我的所有属性都设置为use=required。这似乎对它没有任何影响。我尝试的下一件事是添加
@ApiParam(value = "项目主体", required = true) @RequestBody ProjectInfo 项目
但这也没有效果,因为 Project 对象本身已经是必需的。有没有办法告诉 Swagger Project 的属性也是必需的?我正在使用 Swagger 的 SpringFox 依赖项。
更新
我设法通过将@ApiModel和@ApiModelProperty(value = "The unique name of the project", required = true)添加到我生成的模型中来获得它。
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.02.12 at 09:33:59 AM CET
//
package be.smartask.api.model.post;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import javax.xml.bind.annotation.*;
/**
* <p>Java class for anonymous complex type.
* <p>
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "projectInfo")
@ApiModel
public class ProjectInfo {
@XmlAttribute(name = "name", required = true)
protected String name;
/**
* Gets the value of the name property.
*
* @return possible object is
* {@link String }
*/
@ApiModelProperty(value = "The unique name of the project", required = true)
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value allowed object is
* {@link String }
*/
public void setName(String value) {
this.name = value;
}
}
但是现在我的问题变成了我可以在 XSD 文件中添加 Swagger 注释以便它自己生成吗?