Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 619 Bytes

spring-annotation.md

File metadata and controls

42 lines (32 loc) · 619 Bytes

Spring-贯穿于spring架构中annotation注解说明篇

前言

本文中的注解包括俩部分:

  1. org.springframework.content.annotation.*
  • @Import
  • @ComponentScan
  • @Configuration
  • @Conditional
  • @DependsOn
  • @Description
  • @EnableAspectJAutoProxy
  • @EnableLoadTimeWeaving
  • @EnableMBeanExport
  • @ImportResource
  • @Lazy
  • @Primary
  • @Profile
  • @PropertySource
  • @PropertySources
  • @Role
  • @Scope
  1. org.springframework.stereotype.*
  • @Controller
  • @Service
  • @Component
  • @Repository
  • @Indexed

@Bean

@Bean注解代表返回一个实体类

@Import

@Import