All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alicp.jetcache.anno.method.SpringCacheInvokeContext Maven / Gradle / Ivy

The newest version!
/**
 * Created on  13-10-07 23:25
 */
package com.alicp.jetcache.anno.method;

import org.springframework.context.ApplicationContext;

/**
 * @author huangli
 */
public class SpringCacheInvokeContext extends CacheInvokeContext {
    protected ApplicationContext context;

    public SpringCacheInvokeContext(ApplicationContext context) {
        this.context = context;
    }

    public Object bean(String name) {
        return context.getBean(name);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy