*/
private Cache createCache() throws ConfigeException {
String cacheName = properites.getProperty(CACHE_KEY);
if (isEmpty(cacheName)) {
logger.info("没有发现cache配置,采用默认的MemoryCache");
return new MemoryCache();
}
return (Cache) this.createObject(cacheName + ".", Cache.class);
}