1.伪代码,大概其是这个意思。
1@Component 2public class StaticDemo { 3 @Resource 4 TestService testService; 5 6 private static StaticDemo staticDemo; 7 8 @PostConstruct 9 public void init() { 10 staticDemo = this; 11 } 12 13 private static void testMethod() { 14 staticDemo.testService.xxx(); 15 } 16}