@RestController 返回json字符串的数据,直接可以编写RESTFul的接口;
@CrossOrigin 可以处理跨域请求,让你能访问不是一个域的文件;
@ApiOperation
@NotNull 被注释的元素不能为null:
@NotNull private String name; @NotNull private Integer age;
@SpringBootApplication 申明让spring boot自动给程序进行必要的配置,等价于以默认属性使用@Configuration,@EnableAutoConfiguration和@ComponentScan
原文:https://www.cnblogs.com/arno92/p/9768111.html