springboot启动类常用注解
时间: 2023-08-21 19:17:51 浏览: 100
SpringBoot启动类常用的注解包括:
1. @SpringBootApplication:这是SpringBoot的重要注解,作用在入口启动类上,是一个组合注解,包含了@Configuration、@EnableAutoConfiguration和@ComponentScan。通常用在主类上。
2. @Controller:用于标注控制层组件,需要返回页面时请使用@Controller而不是@RestController。它定义了一个控制器类,在Spring项目中负责将用户发来的URL请求转发到对应的服务接口(service层)。通常与@RequestMapping注解配合使用。
3. @ComponentScan:用于组件扫描,可以自动发现和装配一些Bean。它会扫描带有@Component、@Controller、@Service等注解的类,并将其注册为Bean。可以自动收集所有的Spring组件,包括@Configuration类。
以上是SpringBoot启动类常用的注解。\[1\]\[2\]\[3\]
#### 引用[.reference_title]
- *1* *2* *3* [SpringBoot的常用注解](https://blog.csdn.net/i168wintop/article/details/94122323)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文