对于非Service、Controller类,使用@Autowired注入可能会导致对象为空,故可使用ApplicationContextAware类进行注入 新增Bean类 import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import o…