Package org.apache.camel.component.cache

Examples of org.apache.camel.component.cache.FileCacheManagerFactory


    protected JndiRegistry createRegistry() throws Exception {
        JndiRegistry jndi = super.createRegistry();

        // use a file cache manager factory to load out test configuration
        cache = new CacheComponent();
        cache.setCacheManagerFactory(new FileCacheManagerFactory("src/test/resources/test-ehcache.xml"));
        jndi.bind("cache", cache);

        return jndi;
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.cache.FileCacheManagerFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.