如果你正在使用弹簧项目,并且你正在使用弹簧狐狸swagger api,你可以做得很好。考虑一个豆子 -
public class Person {
@NotNull
private int id;
@NotBlank
@Size(min = 1, max = 20)
private String firstName;
@NotBlank
@Pattern(regexp ="[SOME REGULAR EXPRESSION]")
private String lastName;
@Min(0)
@Max(100)
private int age;
//... Constructor, getters, setters, ...
}
使用 Maven 依赖项 -
//MAVEN
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
//MAVEN
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-bean-validators</artifactId>
<version>2.9.2</version>
</dependency>
这将发挥你的魔力 - @Import(BeanValidatorPluginsConfiguration.class)并且你需要在你的swagger配置类之上导入BeanValidatorPlugins配置文件:
@Configuration
@EnableSwagger2
@Import(BeanValidatorPluginsConfiguration.class)
public class SpringFoxConfig {
...
}
如果您没有用于swagger的配置类,请将其放在控制器上方
@RestController
@EnableSwagger2
@Import(BeanValidatorPluginsConfiguration.class)
@RequestMapping("/v2/persons/")
@Api(description = "Set of endpoints for Creating, Retrieving, Updating and Deleting of Persons.")
public class PersonController {
private PersonService personService;
@RequestMapping(method = RequestMethod.GET, produces = "application/json")
@ApiOperation("Returns list of all Persons in the system.")
public List getAllPersons() {
return personService.getAllPersons();
}
使用来自 JSR-303 注释的数据,它在 swagger 文档中看起来会更好:
{
age integer ($int32)
minimum: 100
maximum: 100
firstName* string
minimumLength: 100
maxLength: 100
}
JSR 303:Bean 验证允许您注释 Java 类的字段以声明约束和验证规则。您可以使用诸如 -- 不能为 null、最小值、最大值、正则表达式匹配等规则对各个字段进行批注。这是一种已经广泛使用的常见做法。好消息是,SpringFox可以基于这些注释生成Swagger文档,因此您可以利用项目中已有的内容,而无需手动编写所有约束!它非常有用,因为 API 的使用者知道他们应该提供给 API 的值的限制是什么,以及期望什么值。如果没有包含此类注释,则为人员模型生成的文档看起来相当简单,除了字段名称及其数据类型之外,什么都没有。