2018-03-08 18:21:13 +01:00
|
|
|
package net.Broken;
|
|
|
|
|
|
|
|
import org.springframework.beans.BeansException;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.context.ApplicationContext;
|
|
|
|
import org.springframework.context.ApplicationContextAware;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
@Component
|
2022-05-15 18:39:46 +02:00
|
|
|
public class SpringContext implements ApplicationContextAware {
|
2018-03-08 18:21:13 +01:00
|
|
|
|
|
|
|
@Autowired
|
|
|
|
static ApplicationContext context;
|
|
|
|
|
2022-05-15 18:39:46 +02:00
|
|
|
public static ApplicationContext getAppContext() {
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
2018-03-08 18:21:13 +01:00
|
|
|
@Override
|
|
|
|
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
|
|
|
|
context = applicationContext;
|
|
|
|
}
|
|
|
|
}
|