Spring启动的流程

启动:
1.
(1)、扫描系统中所有配置有指定注解@Controller、@Service、@Bean、@Component等等
(2)、通过指定配置配的路径

通过反射 obj.getClass().newInsxxxx => 反射创建对象实例 => 放入容器map中

解析bean的时候,检查字段是否有需要注入的注解 @Autowired、 @Resource=>初始化

启动完毕

你可能感兴趣的:(Spring,boot,spring,java)