com.alicp.jetcache.test.spring.SpringTestBase Maven / Gradle / Ivy
The newest version!
/**
* Created on 2019/2/3.
*/
package com.alicp.jetcache.test.spring;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
/**
* @author huangli
*/
public abstract class SpringTestBase implements ApplicationContextAware {
protected ApplicationContext context;
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.context = applicationContext;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy