Spring @Autowired与@Component的作用

今天写项目的时候 写着写着突然想起一个初级的问题 为什么各层调用要使用@Autowired注入 与new的区别在哪 (把之前丢的知识捡回来!) 然后百度了一番

@Autowired这个注解是Spring2.5中出现的。作用是自动装配bean,而无需再为field设置getter,setter方法。

但这句话还是不说很好理解 只是自动装配不需要写get set方法吗 当然不只是这样,所以在了解@Autowired之前 我们先要知道@Component这个注解。

@Component这个注解可能有点眼生但是@Controller @Service @Repository这三个就不陌生了把 其实这三个都是@Component只是为了方便程序员看的更加直观区分那一层 效果无差。有了这个注解之后普通的Bean就会交个Spring容器来管理 就是由Spring容器来创建和销毁Bean 所以这个注解就是在程序运行时Spring容器启动 创建这些Bean然后 由@Autowired来进行以来注入

更加详细的讲解请移步:

https://blog.csdn.net/javazejian/article/details/54561302

你可能感兴趣的:(Spring @Autowired与@Component的作用)