做实验报告的时候,把一个bean设置为static:
static AccountService accountService;
在程序运行过程中,出现了空指针异常,accountService为null。
原因:static对象是属于类层面的,而spring是基于对象层面的。
解决方式:不能设置对象为static。
做实验报告的时候,把一个bean设置为static:
static AccountService accountService;
在程序运行过程中,出现了空指针异常,accountService为null。
原因:static对象是属于类层面的,而spring是基于对象层面的。
解决方式:不能设置对象为static。