springboot常用注解
时间: 2023-10-15 12:30:24 浏览: 17
springboot常用注解说明
Spring Boot 中的常用注解包括:
1. `@SpringBootApplication`:标识一个 Spring Boot 应用程序的主类。
2. `@RestController`:标识一个类是 RESTful Web 服务的控制器。
3. `@RequestMapping`:将 HTTP 请求映射到控制器的处理方法上。
4. `@Autowired`:自动装配 Bean。
5. `@Value`:注入配置属性。
6. `@Configuration`:标识一个类是配置类。
7. `@EnableAutoConfiguration`:自动配置 Spring 应用程序。
8. `@ComponentScan`:扫描组件。
9. `@Transactional`:标识一个方法是事务性的。
10. `@Scheduled`:定时任务。
11. `@Async`:异步方法。
12. `@EnableScheduling`:开启定时任务。
13. `@EnableAsync`:开启异步方法。
阅读全文