0% found this document useful (0 votes)
22 views

spring boot most asked annotations

Guide to clear Spring boot Interview.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views

spring boot most asked annotations

Guide to clear Spring boot Interview.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

@SpringBootApplication

@ComponentScan

@EanbleAutoConfiguration

@Configuration
Stereotype annotation

1. @Component

2. @Service

3. @RestController / @Controller

4. @Repository
Spring Core related Annotations:
• @Configuration
• @Bean
• @Autowired
• @Qualifier
• @Lazy
• @Value
• @PropertySource
• @ConfigurationProperties
• @Profile
• @Scope
REST API related Annotations:
• @RestController
• @RequestMapping
• @GetMapping
• @PostMapping
• @PutMapping
• @DeleteMapping
• @RequestBody
• @PathVariable
• @RequestParam
• @ControllerAdvice & @ExceptionHandler
Spring Data JPA related annotations:
• @Entity

• @Table

• @Column

• @Transactional

Entity class relationships

• @OnetoOne
• @OnetoMany
• @ManytoOne
• @ManytoMany
Security related Annotations:

• @CrossOrigin

• @Secured

• @PreAuthorize

• @PermitAll
Caching related Annotations:
• @EnableCaching

• @Cacheable

• @CachePut

• @CacheEvict
Aspect Oriented annotations.

• @Aspect
• @Pointcut
• @AfterRunning
• @AfterThowing
• @Around
• @Before
Spring Cloud annotations

Kafka annotations

Will continue this in next part of


video

You might also like