对比新文件 |
| | |
| | | package com.gk.firework.Config.ServiceContext; |
| | | |
| | | import org.springframework.beans.BeansException; |
| | | import org.springframework.context.ApplicationContext; |
| | | import org.springframework.context.ApplicationContextAware; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | /** |
| | | * 配置类,解决定时任务无法注入service的问题 |
| | | */ |
| | | @Component |
| | | public class ApplicationContextUtil implements ApplicationContextAware { |
| | | |
| | | private static ApplicationContext applicationContext; |
| | | |
| | | public static ApplicationContext getApplicationContext() { |
| | | return applicationContext; |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { |
| | | ApplicationContextUtil.applicationContext = applicationContext; |
| | | |
| | | } |
| | | |
| | | |
| | | public static Object getBean(String beanName) { |
| | | return applicationContext.getBean(beanName); |
| | | } |
| | | |
| | | } |