springBoot启动流程
时间: 2023-10-28 20:48:22 浏览: 73
SpringBoot启动流程图
Spring Boot启动流程如下:
1. 加载Spring Boot核心配置文件application.properties或application.yml。
2. 创建Spring容器,并自动装配所有配置类和Bean。
3. 扫描所有注解了@Controller、@Service、@Component等注解的类,并将其加入到Spring容器中。
4. 执行所有定义了@PostConstruct注解的方法。
5. 启动Web服务器,监听HTTP请求。
6. 根据请求的URL找到对应的Controller,并执行其中的方法。
7. 处理请求,返回响应。
8. 执行所有定义了@PreDestroy注解的方法。
9. 关闭Spring容器。
以上是Spring Boot启动的基本流程,具体可以根据项目的需要进行定制和扩展。
阅读全文