Spring源码分析spring源码

Spring源码(八)-Spring-IOC中的注解

2017-08-24  本文已影响136人  阿亮私语

前言

这段时间bug有点多,白天的时间几乎都用在改bug了,近一个月都很少看书了,得赶紧改完bug看书。在spring源码分析结束之后,我们也已经完成了循环依赖的解决方案以及设计模式,那么接下来我们分析下Spring中常用的注解。
这里先说明下注解类型。

特别的,如果方法名为 value(), 则在注解的地方需要设置属性值时可以直接写入值,如:@Target({ElemenetType.TYPE}) 而不必写为 @Target(value={ElemenetType.TYPE})
方法返回值必须为primitive类型、Class类型、枚举类型、Annotation类型或者由前面类型之一作为元素的一位数组。

方法的后面可以使用default关键字加一个默认数值来申明成员的默认值,null不能作为成员的默认值,这与我们在非Annotation类型中定义方法有很大不同。
Annotation类型和他的方法不能使用Annotation类型的参数,成员不能是generic。只有返回值类型是Class的方法可以在Annotation类型中使用generic,因为此方法能够用类转换将各种类型转换为Class。
Annotation类型又与接口有着近似之处:它可以定义常量、静态成员类型(比如枚举类型定义);Annotation类型也可以如接口一般被实现或者继承。

1、元注解

元注解的作用就是负责注解其他注解。Java5.0定义了4个标准的meta-annotation类型,它们被用来提供对其它annotation类型作说明 。

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = {
        @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
        @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {

1.1、@Target

用于设定注解使用范围
【详细参考】@Target注解
Target通过ElementType来指定注解可使用范围的枚举集合。

1.2、@Retention

定义注解的保留策略。
【详细参考】@Retention
通过RetentionPolicy来指定注解的枚举集合。

1.3、@Documented

用于描述其它类型的annotation应该被作为被标注的程序成员的公共API,因此可以被例如javadoc此类的工具文档化。Documented是一个标记注解,没有成员。

1.4、@Inherited

说明子类可以继承父类中的该注解

2、Spring-IOC中的注解

2.1 、Autowired注解

按照byType注入,这是最核心的注解,左右就不说明了,直接看源码

@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Autowired {
    boolean required() default true;
}

这里我们看到了元注解,说明所有的注解都是基于这四种元注解。

2.2 @Qualifier

通常和 @Autowired一起使用

@Autowired
@Qualifier("softService")
private ISoftPMService softPMService;

2.3 @Resource

@Resource默认按照ByName自动注入
@Resource有两个重要的属性:name和type,而Spring将@Resource注解的name属性解析为bean的名字,而type属性则解析为bean的类型

2.4、RequestMapping

这是springMVC中最常用的注解,在Spring4.0以后的版本推出了@GetMapping,@PostMapping,@PutMapping,@DeleteMapping等,这些是为restful风格提供的封装注解,其实就是@RequestMapping和对应RequestMethod合并的注解。

@GetMapping("/user/list")
public User getUser(User user){
    
    ···········
    
}

这样userId和username会映射到user对应的属性上。

2.5、@RequestParam,@PathVariable

用于绑定参数,@PathVariable用于邦迪地址中rest风格的参数,@RequestParam用于绑定普通提交的参数。

@PostMapping("/status/update/{id}")
public RestResult updateStatus(@PathVariable Long id, @RequestParam("status") Boolean status) {
    
    ··········
    
}

@RequestParam(value="id",required=false),required = faluse该参数非必须,默认为true

2.6、@Scope

该方法指定bean的创建类型,默认为单例,另外scope还有prototype、request、session、global session作用域。scope="prototype"多例

2.7、@Service,@Repository,@Component

用于标注业务层组件,可以看到该注解默认使用了@Component
【@Service】

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Service {
  String value() default "";
}

【@Repository】

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Repository {
    String value() default "";
}

【@Component】

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Component {
    String value() default "";
}

由此可见这三个注解没有功能没有太大的区别,主要是用来标注业务,做业务方面的区分。

2.8、@Controller、@RestController

用于标注控制层组件即SpringMVC中的Controler
在4.0之后推出了@RestController其实就是@Controller和@ResponseBody的合集

2.9、@ResponseBody

该注解用于将Controller的方法返回的对象,通过适当的HttpMessageConverter转换为指定格式后,写入到Response对象的body数据区。
作用域类或者方法上
【详细参考】(http://www.cnblogs.com/fangjian0423/p/springMVC-request-param-analysis.html)
这块详细的到springMVC源码分析的时候再讲

3.0、@RequestBody

写在最后

这一篇主要是写了一些Sping的注解,下一篇讲下配合SpingBoot推出的注解

上一篇下一篇

猜你喜欢

热点阅读