Skip to content

Latest commit

 

History

History
57 lines (46 loc) · 818 Bytes

spring-annotations.md

File metadata and controls

57 lines (46 loc) · 818 Bytes

spring annotations

1. alias, scope, inheritance, circular

  • @Bean
  • @Description
  • @Lazy
  • @Value
  • @Scope

10. conditional

  • @Conditional

2. profile

  • @Profile

3. primary

  • @Primary
  • @Autowired
  • @Qualifier

4. importresource

  • @Import

5. common

  • @Component
  • @Service
  • @Repository

6. lite

  • @Configration
  • @ComponentScan

7. mvc

  • @Controller
  • @ControlleAdvice
  • @RestController
  • @InitBinder
  • @RequestParam
  • @RequestBody
  • @RequestHeader
  • @ResponseBody
  • @ResponseStatus
  • @PathVariable
  • @MatrixVariable

8. jsr250

  • @Resource
  • @PreDestory
  • @PostConstruct
  • @ManagedBean

9. jsr330

  • @Inject
  • @Named

References