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

Spring注解

时间:2018-12-15 21:08:10      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:point   let   blank   函数   构造函数   ext   auto   als   autowire   

 

处理器方法和方法参数相关:

@Controller,类注解:标记一个类是控制器,控制器上也可以加@RequestMapping,表示类内部的handler method方法的url前共有一部分路径。

@RequestMapping 类注解,方法注解:把一个handler method方法和对应的url匹配,表示这个url的请求使用该方法处理逻辑。该注解支持通配符*,method属性表示支持的方法种类。如:

@RequestMapping (value= "*/testMethod" , method={RequestMethod. GET , RequestMethod. DELETE })  

 

@PathVariable 方法参数注解:把url模板中对应的变量传给相同形参名字的函数参数

@RequestHeader(key)方法参数注解:把请求头中key对应的值传给形参

@CookieValue(key)方法参数注解:把cookie中key对应的值传给形参

@RequestParam(key)方法参数注解:get或post方法传参的时把key对应的值传给形参

@RequestBody

 

 

@Autowired 变量注解,构造函数或set函数注解:从容器中获取对应的bean赋值给变量,传给对应形参,按类型注入

@Resource 变量注解:按名字注入

@Require setter方法注解:检查该属性是否在配置文件中注入。 https://www.tutorialspoint.com/spring/spring_required_annotation.htm

@Scope :表明作用域

 

配置需要扫描目录下的注解

<context:component-scan base-package="test.springmvc"/>

 

Spring注解

标签:point   let   blank   函数   构造函数   ext   auto   als   autowire   

原文地址:https://www.cnblogs.com/afraidToForget/p/10124350.html

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