解决Spring 在工具类(Utils)无法使用@Autowired注入对象

如果我们要在我们自己封装的Utils工具类中或者非controller普通类中使用@Autowired注解注入Service或者Mapper接口,直接注入是不可能的,因为Utils使用了静态的方法,我们是无法直接使用非静态接口的,当我们遇到这样的问题,我们就要想办法解决了。
Spring 为啥不能在static变量上注入?

@Component   
public class TestUtils {  

@Autowired  
private ItemService itemService;  
@Autowired  
private ItemMapper itemMapper;  

public static TestUtils testUtils;  

@PostConstruct
public void init() {      
    testUtils = this;  
}   

//utils工具类中使用service和mapper接口的方法例子,用"testUtils.xxx.方法" 就可以了        
public static void test(Item record){  
    testUtils.itemMapper.insert(record);  
    testUtils.itemService.queryAll();  
    }
 }  

猜你喜欢

转载自blog.csdn.net/yycarry/article/details/80663157