Springboot中常用的注解有哪些?
时间: 2024-06-04 21:11:22 浏览: 92
SpringBoot框架开发常用注解
Springboot中常用的注解有:
1. @SpringBootApplication:标识启动类,包含了@EnableAutoConfiguration、@ComponentScan、@Configuration三个注解。
2. @RestController:标识该类为Restful接口专用,返回格式为JSON。
3. @RequestMapping:定义请求的URL,可以用在类上面或方法上面。
4. @Autowired:自动注入Bean对象,可以用在构造函数、setter方法、字段上面。
5. @PathVariable:获取URL中的参数值。
6. @RequestParam:获取请求参数的值。
7. @ResponseBody:将方法的返回值转换为JSON格式输出到客户端。
8. @Transactional:标识该方法需要使用事务。
9. @Configuration:标识该类为Spring配置类。
10. @Bean:将方法返回的对象注册到Spring容器中。
阅读全文