You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
552 B
Java
22 lines
552 B
Java
package cokr.xit.applib;
|
|
|
|
import org.springframework.context.ApplicationContext;
|
|
import org.springframework.context.ApplicationContextAware;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component("applicationContextProvder")
|
|
public class ApplicationContextProvider implements ApplicationContextAware {
|
|
|
|
private static ApplicationContext context;
|
|
|
|
@Override
|
|
public void setApplicationContext(ApplicationContext ctx) {
|
|
context = ctx;
|
|
}
|
|
|
|
public static ApplicationContext getApplicationContext() {
|
|
return context;
|
|
}
|
|
|
|
}
|