【Spring】Spring boot的ApplicationContextAware 实现获取service

在这里插入图片描述

1.概述

有时候,我们一个普通的java类,想用Spring Boot的注解的service,一般情况下我们是这样的

@Service
public class ManServiceImpl implements ManService {
   
    
    

    @Autowired
    private HelloService helloService;
}

但是这个要求我们的service也

猜你喜欢

转载自blog.csdn.net/qq_21383435/article/details/108825486