【040期】面试官问:说一说 Spring 中 @Autowired 和 new 对象有什么区别?
>>号外:关注“Java精选”公众号,回复“面试资料”,免费领取资料!“Java精选面试题”小程序,3000+ 道面试题在线刷,最新、最全 Java 面试题!
根本原因在于当Spring框架帮我们管理的时候就会自动的初始化接下来会用到的属性,而通过new对象的方式,在该new对象中使用到的一些实例就需要自己去做初始化,否则就会报空指针异常。
如下例子所示:
TestService 通过@Autowired注入,那么Spring容器就会自动注入TestService 中会用到的TestDao。
如例一所示。
例一:
@RestController
@RequestMapping(value = "/test")
public class TestController {
@Autowired
private TestService testService;
@RequestMapping(value = "/print",method = RequestMethod.GET)
public void test() {
testService.test();
}
}
@Service
public class TestService {
@Autowired
private TestDao testDao;
public void test() {
testDao.test();
}
}
如果TestService 通过new对象方式新建的话,Spring容器就不会自动注入TestDao,此时testDao为null,会报空指针异常。此时就需要在TestService中自己new一个TestDao对象。如例二所示。
半路出家的菜鸡程序员,北漂五年,给刚入行朋友的一些忠告,发自肺:访问地址:https://blog.yoodb.com/yoodb/article/detail/1716
例二:
@RestController
@RequestMapping(value = "/test")
public class TestController {
private TestService testService = new TestService ();
@RequestMapping(value = "/print",method = RequestMethod.GET)
public void test() {
testService.test();
}
}
@Service
public class TestService {
@Autowired
private TestDao testDao;
public void test() {
TestDao testDao = new TestDao ();
testDao.test();
}
}
总结:
在程序启动时,Spring会按照一定的加载链来加载并初始化Spring容器中的组件。
例如:在A中注入B,B中注入C。在A中调用B,来使用B中调用C的方法时,如果不采用自动注入,而是使用new对象方式的话,就会报空指针异常(因为B中的C并没有被初始化)。
作者:LuQiaoYa
blog.csdn.net/LuQiaoYa/article/details/111573886
【030期】面试官问:MySQL发生死锁有哪些原因,怎么避免?
【031期】面试官问:为什么 StringBuilder 线程不是安全的?
【032期】2021年 Java 面试中 Linux 最高频的五个基本面试题
【033期】面试官问:说一说 Spring 中接口 bean 是如何注入的吗?
【034期】美团面试题:JVM 堆内存溢出后,其他线程是否可继续工作?
【036期】面试官问:公司项目中 Java 多线程一般适用于什么场景?