spring不能直接注入靜態(tài)屬性,不然會(huì)一直報(bào)空指針異常鸳君。
所以今天寫工具類的時(shí)候耽誤了很久才解決,最后是使用setter注入
@Component
class ParamsUtils {
? ? ? ?private static CodeService codeService;
? ? ? @Resource
? ? ? ?public void setCodeService(CodeService codeService) {
? ? ? ? ? ? ? ?ParamsUtils.codeService = codeService;
? ? ? ? ?}
? ? ?public static String getParam(){
? ? ? ? ? ?List<Code>? ?list = codeService.findCode();
? ? ? ? ? ? XXXXXXXX
? ? ? }
}