1.7.7版本 @ApiModelProperty注解的required=true时ui页面显示还是false 6年前 你好,这个并非UI的bug,因为在swagger的响应json中,针对@Requestbody这一类型的注解,实体属性只用@ApiModelProperty时,基础的类io.swagger.models.properties.property接口中,getRequired()方法加上了jackson的@JsonIgnore注解,也就是说出来的属...
my Model class like : @ApiModel(value = "SendUserRequest",description = "请求对应方法时使用") public class SendUserRequest { private String id; @ApiModelProperty(value = "登录账户",required = true) private String email; in my Spring application contr...
@Data public class StudentCreation { @ApiModelProperty(required = true) private String firstName; @ApiModelProperty(required = true) private String lastName; @ApiModelProperty(required = true) private String address; } 对于POST端点,有效负载中需要所有字段,但是对于POST端点,firstName是可选的lastName。
{protectedStringname;protectedTypetype;@ApiModelProperty(value="Must be unique",required=true)publicStringgetName() {returnname; }publicvoidsetName(Stringvalue) {this.name=value; }@ApiModelProperty(value="Enum",required=true)publicTypegetType() {returntype; }publicvoidsetType(Typevalue) {this.type...
@ApiModelProperty(value="状态", name="status", required=true) private Integer status; private String pwd; private String nName; private Integer flag; @ApiModelProperty(value="grade数组", hidden=true) private String[] grades; private List<String> gradeList; ...
设置ApiModelProperty注解的required属性页面无变化 zero创建了任务6年前 萧明拥有者6年前 你好,我这边用1.7.5版本的测,这个require属性是生效的,你试试最新版本的1.7.5的 、 拥有者 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->...