码迷,mamicode.com
首页 > 编程语言 > 详细

Java注解

时间:2019-12-04 14:54:34      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:tco   返回值   htm   wired   autowired   实例   方法   java注解   参数   

***************请求映射类**************

@RequestMapping("")//修饰类或接口,以get或post方式请求。
@PostMapping("")//修饰类或接口,以post方式请求。
@GetMapping("")//修饰类或接口,以get方式请求。

***************入参约束类**************

@RequestBody //修饰参数接收类,用对象接收以json串传入的数据

***************返回约束类**************

@RestController(修饰Controller,返回json数据,无法返回jsp、html页面) = @Controller + @ResponseBody(修饰方法返回值类)

***************引入或实例化对象**************

@Slf4j //修饰类,引入日志对象log
@Autowired


 

Java注解

标签:tco   返回值   htm   wired   autowired   实例   方法   java注解   参数   

原文地址:https://www.cnblogs.com/shijianchuzhenzhi/p/11982814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!