spring注解备注
Posted whb11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring注解备注相关的知识,希望对你有一定的参考价值。
@ApiOperation(value = “接口说明”, httpMethod = “接口请求方式”, response = “接口返回参数类型”, notes = “接口发布说明”;其他参数可参考源码;
@RestController注解相当于@ResponseBody + @Controller合在一起的作用。
1) 如果只是使用@RestController注解Controller,则Controller中的方法无法返回jsp页面,或者html,配置的视图解析器 InternalResourceViewResolver不起作用,返回的内容就是Return 里的内容。
2) 如果需要返回到指定页面,则需要用 @Controller配合视图解析器InternalResourceViewResolver才行。
@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。该注解将HTTP Get 映射到 特定的处理方法上。@GetMapping 和 @RequestMapping的不同之处在于@GetMapping不支持@RequestMapping的自定义属性。
@JsonProperty 此注解用于属性上,作用是把该属性的名称序列化为另外一个名称,如把trueName属性序列化为name,@JsonProperty(value="name")。
以上是关于spring注解备注的主要内容,如果未能解决你的问题,请参考以下文章