SpringBoot中非Controller类调用service方法出现null空指针 原因:service无法导入到非controller层中去。 解决方法:注入bean @Component//重点publicclassTestServerse{ @Autowired//正常引用目标serviceprivateOtherService otherService ;//将自己作为静态变量引入,使SpringBoot初始化之前就被创建publicstaticTestServerse testSe...
SpringBoot中非Controller类调用service方法出现null空指针,原因:service无法导入到非controller层中去。解决方法:注入bean@Component//重点publicclassTestServerse{@Autowired//正常引用目标serviceprivateOtherServiceotherService;/...