一、ehcahe的介绍

EhCache 是一个纯Java的进程内缓存框架,具有快速、精干等特点,是Hibernate中默认的CacheProvider。Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存,Java EE和轻量级容器。它具有内存和磁盘存储,缓存加载器,缓存扩展,缓存异常处理程序,一个gzip缓存servlet过滤器,支持REST和SOAP api等特点。

优点: 
1. 快速 
2. 简单 
3. 多种缓存策略 
4. 缓存数据有两级:内存和磁盘,因此无需担心容量问题 
5. 缓存数据会在虚拟机重启的过程中写入磁盘 
6. 可以通过RMI、可插入API等方式进行分布式缓存 
7. 具有缓存和缓存管理器的侦听接口 
8. 支持多缓存管理器实例,以及一个实例的多个缓存区域 
9. 提供Hibernate的缓存实现

缺点: 
1. 使用磁盘Cache的时候非常占用磁盘空间:这是因为DiskCache的算法简单,该算法简单也导致Cache的效率非常高。它只是对元素直接追加存储。因此搜索元素的时候非常的快。如果使用DiskCache的,在很频繁的应用中,很快磁盘会满。 
2. 不能保证数据的安全:当突然kill掉java的时候,可能会产生冲突,EhCache的解决方法是如果文件冲突了,则重建cache。这对于Cache数据需要保存的时候可能不利。当然,Cache只是简单的加速,而不能保证数据的安全。如果想保证数据的存储安全,可以使用Bekeley DB Java Edition版本。这是个嵌入式数据库。可以确保存储安全和空间的利用率。

EhCache的分布式缓存有传统的RMI,1.5版的JGroups,1.6版的JMS。分布式缓存主要解决集群环境中不同的服务器间的数据的同步问题。

使用Spring的AOP进行整合,可以灵活的对方法的返回结果对象进行缓存。

下面将介绍Spring+EhCache详细实例。

二、详细实例讲解

本实例的环境 eclipse + maven + spring + ehcache + junit

2.1、相关依赖pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <groupId>com</groupId>
<artifactId>ehcache_demo</artifactId>
<version>1.0-SNAPSHOT</version> <properties>
<!-- spring版本号 -->
<spring.version>3.2.8.RELEASE</spring.version>
<!-- log4j日志文件管理包版本 -->
<slf4j.version>1.6.6</slf4j.version>
<log4j.version>1.2.12</log4j.version>
<!-- junit版本号 -->
<junit.version>4.10</junit.version>
</properties> <dependencies>
<!-- 添加Spring依赖 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency> <!--单元测试依赖 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency> <!--spring单元测试依赖 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency> <!-- ehcache 相关依赖 -->
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>2.8.3</version>
</dependency> <!-- 日志文件管理包 -->
<!-- log start -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

2.2、添加ehcache配置文件ehcache-setting.xml

<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
<!-- 指定一个文件目录,当EhCache把数据写到硬盘上时,将把数据写到这个文件目录下 -->
<diskStore path="java.io.tmpdir"/>
<!-- 设定缓存的默认数据过期策略 -->
<defaultCache
maxElementsInMemory="10000"
eternal="false"
overflowToDisk="true"
timeToIdleSeconds="10"
timeToLiveSeconds="20"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"/> <cache name="cacheTest"
maxElementsInMemory="1000"
eternal="false"
overflowToDisk="true"
timeToIdleSeconds="10"
timeToLiveSeconds="20"/> </ehcache>
<!--
cache元素的属性:
name:缓存名称
maxElementsInMemory:内存中最大缓存对象数
maxElementsOnDisk:硬盘中最大缓存对象数,若是0表示无穷大
eternal:true表示对象永不过期,此时会忽略timeToIdleSeconds和timeToLiveSeconds属性,默认为false
overflowToDisk:true表示当内存缓存的对象数目达到了
maxElementsInMemory界限后,会把溢出的对象写到硬盘缓存中。注意:如果缓存的对象要写入到硬盘中的话,则该对象必须实现了Serializable接口才行。
diskSpoolBufferSizeMB:磁盘缓存区大小,默认为30MB。每个Cache都应该有自己的一个缓存区。
diskPersistent:是否缓存虚拟机重启期数据,是否持久化磁盘缓存,当这个属性的值为true时,系统在初始化时会在磁盘中查找文件名为cache名称,后缀名为index的文件,这个文件中存放了已经持久化在磁盘中的cache的index,找到后会把cache加载到内存,要想把cache真正持久化到磁盘,写程序时注意执行net.sf.ehcache.Cache.put(Element element)后要调用flush()方法。
diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认为120秒
timeToIdleSeconds: 设定允许对象处于空闲状态的最长时间,以秒为单位。当对象自从最近一次被访问后,如果处于空闲状态的时间超过了timeToIdleSeconds属性值,这个对象就会过期,EHCache将把它从缓存中清空。只有当eternal属性为false,该属性才有效。如果该属性值为0,则表示对象可以无限期地处于空闲状态
timeToLiveSeconds:设定对象允许存在于缓存中的最长时间,以秒为单位。当对象自从被存放到缓存中后,如果处于缓存中的时间超过了 timeToLiveSeconds属性值,这个对象就会过期,EHCache将把它从缓存中清除。只有当eternal属性为false,该属性才有效。如果该属性值为0,则表示对象可以无限期地存在于缓存中。timeToLiveSeconds必须大于timeToIdleSeconds属性,才有意义
memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。可选策略有:LRU(最近最少使用,默认策略)、FIFO(先进先出)、LFU(最少访问次数)。
-->

这里我们配置了cacheTest策略,10秒过期。

2.3、spring配置文件application.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:cache="http://www.springframework.org/schema/cache"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache-3.1.xsd">
<!-- 自动扫描注解的bean -->
<context:component-scan base-package="com.service"/> <cache:annotation-driven cache-manager="cacheManager"/> <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
<property name="cacheManager" ref="ehcache"></property>
</bean> <bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="classpath:ehcache-setting.xml"></property>
</bean>
</beans>

2.4、EhCacheTestService接口

package com.service;

public interface EhCacheTestService {
public String getTimestamp(String param);
}

2.5、EhCacheTestService接口实现

package com.service.impl;

import com.service.EhCacheTestService;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service; @Service
public class EhCacheTestServiceImpl implements EhCacheTestService {
@Cacheable(value = "cacheTest", key = "#param")//注解中value=”cacheTest”与ehcache-setting.xml中的cache名称属性值一致
public String getTimestamp(String param) {
Long timestamp = System.currentTimeMillis();
return timestamp.toString();
}
}

2.6、单元测试类

package com.service.impl;

import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; /**
* Created by MyWorld on 2016/6/26.
*/
@ContextConfiguration(locations = {"classpath:application.xml"})
@RunWith(SpringJUnit4ClassRunner.class)
public class SpringTestCase {
}
package com.service.impl;

import com.service.EhCacheTestService;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import javax.annotation.Resource; import java.util.concurrent.TimeUnit; import static org.junit.Assert.*; /**
* Created by MyWorld on 2016/6/26.
*/
public class EhCacheTestServiceImplTest extends SpringTestCase {
private Logger LOGGER = LoggerFactory.getLogger(EhCacheTestServiceImplTest.class);
@Resource
private EhCacheTestService ehCacheTestService; @Test
public void testGetTimestamp() throws Exception {
LOGGER.info("First Invoke:{}", ehCacheTestService.getTimestamp("param"));
TimeUnit.SECONDS.sleep(2);
LOGGER.info("Invoke After 2 second:{}", ehCacheTestService.getTimestamp("param"));
TimeUnit.SECONDS.sleep(11);
LOGGER.info("Invoke After 11 second:{}", ehCacheTestService.getTimestamp("param"));
}
}

log4j.properties

log4j.rootLogger=debug, R1,console
log4j.appender.R1=org.apache.log4j.DailyRollingFileAppender
log4j.appender.R1.File=logs/ehcache.log
log4j.appender.R1.DatePattern='_'yyyy-MM-dd'.log'
log4j.appender.R1.layout=org.apache.log4j.PatternLayout
log4j.appender.R1.layout.ConversionPattern=[%d] [%t][%c] %p - %m%n log4j.appender.console=org.apache.log4j.ConsoleAppender
log4j.appender.console.layout=org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=[%d] [%t][%c] %p - %m%n

2.7、运行结果:

[2016-06-26 00:33:18,226] [main][org.springframework.test.context.junit4.SpringJUnit4ClassRunner] DEBUG - SpringJUnit4ClassRunner constructor called with [class com.service.impl.EhCacheTestServiceImplTest].
[2016-06-26 00:33:18,305] [main][org.springframework.test.context.support.AbstractDelegatingSmartContextLoader] DEBUG - Delegating to GenericXmlContextLoader to process context configuration [ContextConfigurationAttributes@6de728 declaringClass = 'com.service.impl.SpringTestCase', locations = '{classpath:application.xml}', classes = '{}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
[2016-06-26 00:33:18,352] [main][org.springframework.test.context.ContextLoaderUtils] DEBUG - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,359] [main][org.springframework.test.context.TestContextManager] DEBUG - @TestExecutionListeners is not present for class [class com.service.impl.EhCacheTestServiceImplTest]: using defaults.
[2016-06-26 00:33:18,365] [main][org.springframework.test.context.TestContextManager] INFO - Could not instantiate TestExecutionListener class [org.springframework.test.context.web.ServletTestExecutionListener]. Specify custom listener classes or make the default listener classes (and their dependencies) available.
[2016-06-26 00:33:18,388] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,389] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,402] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,403] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,408] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,410] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,417] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,418] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,424] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,425] [main][org.springframework.test.annotation.ProfileValueUtils] DEBUG - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.service.impl.EhCacheTestServiceImplTest]
[2016-06-26 00:33:18,441] [main][org.springframework.test.context.support.DependencyInjectionTestExecutionListener] DEBUG - Performing dependency injection for test context [[TestContext@108b2d7 testClass = EhCacheTestServiceImplTest, testInstance = com.service.impl.EhCacheTestServiceImplTest@154909b, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1f256fa testClass = EhCacheTestServiceImplTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]].
[2016-06-26 00:33:18,444] [main][org.springframework.test.context.support.AbstractDelegatingSmartContextLoader] DEBUG - Delegating to GenericXmlContextLoader to load context from [MergedContextConfiguration@1f256fa testClass = EhCacheTestServiceImplTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
[2016-06-26 00:33:18,447] [main][org.springframework.test.context.support.AbstractGenericContextLoader] DEBUG - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@1f256fa testClass = EhCacheTestServiceImplTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
[2016-06-26 00:33:18,631] [main][org.springframework.core.env.StandardEnvironment] DEBUG - Adding [systemProperties] PropertySource with lowest search precedence
[2016-06-26 00:33:18,634] [main][org.springframework.core.env.StandardEnvironment] DEBUG - Adding [systemEnvironment] PropertySource with lowest search precedence
[2016-06-26 00:33:18,635] [main][org.springframework.core.env.StandardEnvironment] DEBUG - Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
[2016-06-26 00:33:18,671] [main][org.springframework.beans.factory.xml.XmlBeanDefinitionReader] INFO - Loading XML bean definitions from class path resource [application.xml]
[2016-06-26 00:33:18,737] [main][org.springframework.beans.factory.xml.DefaultDocumentLoader] DEBUG - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
[2016-06-26 00:33:18,803] [main][org.springframework.beans.factory.xml.PluggableSchemaResolver] DEBUG - Loading schema mappings from [META-INF/spring.schemas]
[2016-06-26 00:33:18,810] [main][org.springframework.beans.factory.xml.PluggableSchemaResolver] DEBUG - Loaded schema mappings: {http://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-3.2.xsd, http://www.springframework.org/schema/jee/spring-jee-3.2.xsd=org/springframework/ejb/config/spring-jee-3.2.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd=org/springframework/web/servlet/config/spring-mvc-3.1.xsd, http://www.springframework.org/schema/task/spring-task.xsd=org/springframework/scheduling/config/spring-task-3.2.xsd, http://www.springframework.org/schema/beans/spring-beans-3.1.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd, http://www.springframework.org/schema/cache/spring-cache.xsd=org/springframework/cache/config/spring-cache-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop-3.0.xsd=org/springframework/aop/config/spring-aop-3.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/task/spring-task-3.1.xsd=org/springframework/scheduling/config/spring-task-3.1.xsd, http://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-3.2.xsd, http://www.springframework.org/schema/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd=org/springframework/jdbc/config/spring-jdbc-3.1.xsd, http://www.springframework.org/schema/tool/spring-tool-3.1.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-3.2.xsd, http://www.springframework.org/schema/jee/spring-jee-3.1.xsd=org/springframework/ejb/config/spring-jee-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-3.2.xsd=org/springframework/transaction/config/spring-tx-3.2.xsd, http://www.springframework.org/schema/context/spring-context-3.2.xsd=org/springframework/context/config/spring-context-3.2.xsd, http://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd, http://www.springframework.org/schema/util/spring-util-3.2.xsd=org/springframework/beans/factory/xml/spring-util-3.2.xsd, http://www.springframework.org/schema/lang/spring-lang-3.2.xsd=org/springframework/scripting/config/spring-lang-3.2.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd=org/springframework/web/servlet/config/spring-mvc-3.0.xsd, http://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd, http://www.springframework.org/schema/cache/spring-cache-3.2.xsd=org/springframework/cache/config/spring-cache-3.2.xsd, http://www.springframework.org/schema/task/spring-task-3.0.xsd=org/springframework/scheduling/config/spring-task-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd, http://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd=org/springframework/jdbc/config/spring-jdbc-3.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.0.xsd=org/springframework/beans/factory/xml/spring-tool-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-3.2.xsd, http://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd, http://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd, http://www.springframework.org/schema/aop/spring-aop-3.2.xsd=org/springframework/aop/config/spring-aop-3.2.xsd, http://www.springframework.org/schema/jee/spring-jee-3.0.xsd=org/springframework/ejb/config/spring-jee-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.1.xsd=org/springframework/transaction/config/spring-tx-3.1.xsd, http://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/context/spring-context-3.1.xsd=org/springframework/context/config/spring-context-3.1.xsd, http://www.springframework.org/schema/util/spring-util-3.1.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd, http://www.springframework.org/schema/lang/spring-lang-3.1.xsd=org/springframework/scripting/config/spring-lang-3.1.xsd, http://www.springframework.org/schema/cache/spring-cache-3.1.xsd=org/springframework/cache/config/spring-cache-3.1.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-3.2.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd, http://www.springframework.org/schema/mvc/spring-mvc.xsd=org/springframework/web/servlet/config/spring-mvc-3.2.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc.xsd=org/springframework/jdbc/config/spring-jdbc-3.2.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd=org/springframework/web/servlet/config/spring-mvc-3.2.xsd, http://www.springframework.org/schema/beans/spring-beans-3.2.xsd=org/springframework/beans/factory/xml/spring-beans-3.2.xsd, http://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/aop/spring-aop-3.1.xsd=org/springframework/aop/config/spring-aop-3.1.xsd, http://www.springframework.org/schema/task/spring-task-3.2.xsd=org/springframework/scheduling/config/spring-task-3.2.xsd, http://www.springframework.org/schema/tx/spring-tx-3.0.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd, http://www.springframework.org/schema/context/spring-context-3.0.xsd=org/springframework/context/config/spring-context-3.0.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-3.2.xsd, http://www.springframework.org/schema/util/spring-util-3.0.xsd=org/springframework/beans/factory/xml/spring-util-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-3.0.xsd=org/springframework/scripting/config/spring-lang-3.0.xsd, http://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd=org/springframework/jdbc/config/spring-jdbc-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool-3.2.xsd=org/springframework/beans/factory/xml/spring-tool-3.2.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd}
[2016-06-26 00:33:18,856] [main][org.springframework.beans.factory.xml.PluggableSchemaResolver] DEBUG - Found XML schema [http://www.springframework.org/schema/beans/spring-beans-3.0.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-3.0.xsd
[2016-06-26 00:33:18,925] [main][org.springframework.beans.factory.xml.PluggableSchemaResolver] DEBUG - Found XML schema [http://www.springframework.org/schema/context/spring-context-3.0.xsd] in classpath: org/springframework/context/config/spring-context-3.0.xsd
[2016-06-26 00:33:18,935] [main][org.springframework.beans.factory.xml.PluggableSchemaResolver] DEBUG - Found XML schema [http://www.springframework.org/schema/tool/spring-tool-3.0.xsd] in classpath: org/springframework/beans/factory/xml/spring-tool-3.0.xsd
[2016-06-26 00:33:18,946] [main][org.springframework.beans.factory.xml.PluggableSchemaResolver] DEBUG - Found XML schema [http://www.springframework.org/schema/cache/spring-cache-3.1.xsd] in classpath: org/springframework/cache/config/spring-cache-3.1.xsd
[2016-06-26 00:33:18,961] [main][org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader] DEBUG - Loading bean definitions
[2016-06-26 00:33:18,986] [main][org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver] DEBUG - Loaded NamespaceHandler mappings: {http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/mvc=org.springframework.web.servlet.config.MvcNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/jdbc=org.springframework.jdbc.config.JdbcNamespaceHandler, http://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler, http://www.springframework.org/schema/c=org.springframework.beans.factory.xml.SimpleConstructorNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}
[2016-06-26 00:33:19,046] [main][org.springframework.core.io.support.PathMatchingResourcePatternResolver] DEBUG - Looking for matching resources in directory tree [E:\java\sts\workspace\ehcache_project\target\test-classes\com\service]
[2016-06-26 00:33:19,048] [main][org.springframework.core.io.support.PathMatchingResourcePatternResolver] DEBUG - Searching directory [E:\java\sts\workspace\ehcache_project\target\test-classes\com\service] for files matching pattern [E:/java/sts/workspace/ehcache_project/target/test-classes/com/service/**/*.class]
[2016-06-26 00:33:19,053] [main][org.springframework.core.io.support.PathMatchingResourcePatternResolver] DEBUG - Searching directory [E:\java\sts\workspace\ehcache_project\target\test-classes\com\service\impl] for files matching pattern [E:/java/sts/workspace/ehcache_project/target/test-classes/com/service/**/*.class]
[2016-06-26 00:33:19,061] [main][org.springframework.core.io.support.PathMatchingResourcePatternResolver] DEBUG - Looking for matching resources in directory tree [E:\java\sts\workspace\ehcache_project\target\classes\com\service]
[2016-06-26 00:33:19,062] [main][org.springframework.core.io.support.PathMatchingResourcePatternResolver] DEBUG - Searching directory [E:\java\sts\workspace\ehcache_project\target\classes\com\service] for files matching pattern [E:/java/sts/workspace/ehcache_project/target/classes/com/service/**/*.class]
[2016-06-26 00:33:19,064] [main][org.springframework.core.io.support.PathMatchingResourcePatternResolver] DEBUG - Searching directory [E:\java\sts\workspace\ehcache_project\target\classes\com\service\impl] for files matching pattern [E:/java/sts/workspace/ehcache_project/target/classes/com/service/**/*.class]
[2016-06-26 00:33:19,067] [main][org.springframework.core.io.support.PathMatchingResourcePatternResolver] DEBUG - Resolved location pattern [classpath*:com/service/**/*.class] to resources [file [E:\java\sts\workspace\ehcache_project\target\test-classes\com\service\impl\EhCacheTestServiceImplTest.class], file [E:\java\sts\workspace\ehcache_project\target\test-classes\com\service\impl\SpringTestCase.class], file [E:\java\sts\workspace\ehcache_project\target\classes\com\service\EhCacheTestService.class], file [E:\java\sts\workspace\ehcache_project\target\classes\com\service\impl\EhCacheTestServiceImpl.class]]
[2016-06-26 00:33:19,131] [main][org.springframework.context.annotation.ClassPathBeanDefinitionScanner] DEBUG - Identified candidate component class: file [E:\java\sts\workspace\ehcache_project\target\classes\com\service\impl\EhCacheTestServiceImpl.class]
[2016-06-26 00:33:19,200] [main][org.springframework.beans.factory.xml.XmlBeanDefinitionReader] DEBUG - Loaded 11 bean definitions from location pattern [classpath:application.xml]
[2016-06-26 00:33:19,221] [main][org.springframework.context.support.GenericApplicationContext] INFO - Refreshing org.springframework.context.support.GenericApplicationContext@13fcdbd: startup date [Sun Jun 26 00:33:19 CST 2016]; root of context hierarchy
[2016-06-26 00:33:19,222] [main][org.springframework.context.support.GenericApplicationContext] DEBUG - Bean factory for org.springframework.context.support.GenericApplicationContext@13fcdbd: org.springframework.beans.factory.support.DefaultListableBeanFactory@4a7dd4: defining beans [ehCacheTestServiceImpl,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.cache.annotation.AnnotationCacheOperationSource#0,org.springframework.cache.interceptor.CacheInterceptor#0,org.springframework.cache.config.internalCacheAdvisor,cacheManager,ehcache]; root of factory hierarchy
[2016-06-26 00:33:19,267] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
[2016-06-26 00:33:19,271] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
[2016-06-26 00:33:19,309] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
[2016-06-26 00:33:19,317] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
[2016-06-26 00:33:19,375] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
[2016-06-26 00:33:19,377] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
[2016-06-26 00:33:19,379] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
[2016-06-26 00:33:19,380] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
[2016-06-26 00:33:19,383] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
[2016-06-26 00:33:19,384] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
[2016-06-26 00:33:19,386] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
[2016-06-26 00:33:19,387] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
[2016-06-26 00:33:19,388] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
[2016-06-26 00:33:19,389] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
[2016-06-26 00:33:19,396] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
[2016-06-26 00:33:19,397] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
[2016-06-26 00:33:19,398] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
[2016-06-26 00:33:19,399] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
[2016-06-26 00:33:19,399] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor' to allow for resolving potential circular references
[2016-06-26 00:33:19,400] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
[2016-06-26 00:33:19,403] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
[2016-06-26 00:33:19,404] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.aop.config.internalAutoProxyCreator'
[2016-06-26 00:33:19,424] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.aop.config.internalAutoProxyCreator' to allow for resolving potential circular references
[2016-06-26 00:33:19,472] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.aop.config.internalAutoProxyCreator'
[2016-06-26 00:33:19,477] [main][org.springframework.context.support.GenericApplicationContext] DEBUG - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@11302d6]
[2016-06-26 00:33:19,483] [main][org.springframework.context.support.GenericApplicationContext] DEBUG - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@1918c79]
[2016-06-26 00:33:19,487] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] INFO - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@4a7dd4: defining beans [ehCacheTestServiceImpl,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.cache.annotation.AnnotationCacheOperationSource#0,org.springframework.cache.interceptor.CacheInterceptor#0,org.springframework.cache.config.internalCacheAdvisor,cacheManager,ehcache,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy
[2016-06-26 00:33:19,492] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'ehCacheTestServiceImpl'
[2016-06-26 00:33:19,494] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'ehCacheTestServiceImpl'
[2016-06-26 00:33:19,498] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'ehCacheTestServiceImpl' to allow for resolving potential circular references
[2016-06-26 00:33:19,501] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:19,502] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:19,812] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.cache.config.internalCacheAdvisor' to allow for resolving potential circular references
[2016-06-26 00:33:19,837] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.cache.annotation.AnnotationCacheOperationSource#0'
[2016-06-26 00:33:19,838] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.cache.annotation.AnnotationCacheOperationSource#0'
[2016-06-26 00:33:19,842] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.cache.annotation.AnnotationCacheOperationSource#0' to allow for resolving potential circular references
[2016-06-26 00:33:19,851] [main][org.springframework.aop.framework.autoproxy.BeanFactoryAdvisorRetrievalHelper] DEBUG - Skipping currently created advisor 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:19,856] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.cache.annotation.AnnotationCacheOperationSource#0'
[2016-06-26 00:33:19,857] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:19,862] [main][org.springframework.cache.annotation.AnnotationCacheOperationSource] DEBUG - Adding cacheable method 'getTimestamp' with attribute: [CacheableOperation[public java.lang.String com.service.impl.EhCacheTestServiceImpl.getTimestamp(java.lang.String)] caches=[cacheTest] | key='#param' | condition='' | unless='']
[2016-06-26 00:33:19,872] [main][org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator] DEBUG - Creating implicit proxy for bean 'ehCacheTestServiceImpl' with 0 common interceptors and 1 specific interceptors
[2016-06-26 00:33:19,874] [main][org.springframework.aop.framework.JdkDynamicAopProxy] DEBUG - Creating JDK dynamic proxy: target source is SingletonTargetSource for target object [com.service.impl.EhCacheTestServiceImpl@909414]
[2016-06-26 00:33:19,881] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'ehCacheTestServiceImpl'
[2016-06-26 00:33:19,881] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
[2016-06-26 00:33:19,883] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
[2016-06-26 00:33:19,884] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
[2016-06-26 00:33:19,885] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
[2016-06-26 00:33:19,887] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
[2016-06-26 00:33:19,887] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.cache.annotation.AnnotationCacheOperationSource#0'
[2016-06-26 00:33:19,889] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'org.springframework.cache.interceptor.CacheInterceptor#0'
[2016-06-26 00:33:19,889] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'org.springframework.cache.interceptor.CacheInterceptor#0'
[2016-06-26 00:33:19,894] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'org.springframework.cache.interceptor.CacheInterceptor#0' to allow for resolving potential circular references
[2016-06-26 00:33:19,899] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'cacheManager'
[2016-06-26 00:33:19,899] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'cacheManager'
[2016-06-26 00:33:19,906] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'cacheManager' to allow for resolving potential circular references
[2016-06-26 00:33:19,913] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating shared instance of singleton bean 'ehcache'
[2016-06-26 00:33:19,914] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Creating instance of bean 'ehcache'
[2016-06-26 00:33:19,943] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Eagerly caching bean 'ehcache' to allow for resolving potential circular references
[2016-06-26 00:33:19,947] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Invoking afterPropertiesSet() on bean with name 'ehcache'
[2016-06-26 00:33:19,947] [main][org.springframework.cache.ehcache.EhCacheManagerFactoryBean] INFO - Initializing EhCache CacheManager
[2016-06-26 00:33:19,975] [main][net.sf.ehcache.config.ConfigurationFactory] DEBUG - Configuring ehcache from InputStream
[2016-06-26 00:33:20,106] [main][net.sf.ehcache.config.DiskStoreConfiguration] DEBUG - Disk Store Path: C:\Users\ADMINI~1\AppData\Local\Temp\
[2016-06-26 00:33:20,195] [main][net.sf.ehcache.util.PropertyUtil] DEBUG - propertiesString is null.
[2016-06-26 00:33:20,214] [main][net.sf.ehcache.config.ConfigurationHelper] DEBUG - No CacheManagerEventListenerFactory class specified. Skipping...
[2016-06-26 00:33:21,030] [main][net.sf.ehcache.Cache] DEBUG - No BootstrapCacheLoaderFactory class specified. Skipping...
[2016-06-26 00:33:21,031] [main][net.sf.ehcache.Cache] DEBUG - CacheWriter factory not configured. Skipping...
[2016-06-26 00:33:21,031] [main][net.sf.ehcache.config.ConfigurationHelper] DEBUG - No CacheExceptionHandlerFactory class specified. Skipping...
[2016-06-26 00:33:21,048] [main][net.sf.ehcache.Cache] DEBUG - No BootstrapCacheLoaderFactory class specified. Skipping...
[2016-06-26 00:33:21,049] [main][net.sf.ehcache.Cache] DEBUG - CacheWriter factory not configured. Skipping...
[2016-06-26 00:33:21,050] [main][net.sf.ehcache.config.ConfigurationHelper] DEBUG - No CacheExceptionHandlerFactory class specified. Skipping...
[2016-06-26 00:33:21,124] [main][net.sf.ehcache.DiskStorePathManager] DEBUG - Using diskstore path C:\Users\ADMINI~1\AppData\Local\Temp
[2016-06-26 00:33:21,124] [main][net.sf.ehcache.DiskStorePathManager] DEBUG - Holding exclusive lock on C:\Users\ADMINI~1\AppData\Local\Temp\.ehcache-diskstore.lock
[2016-06-26 00:33:21,126] [main][net.sf.ehcache.store.disk.DiskStorageFactory] DEBUG - Failed to delete file cache%0054est.data
[2016-06-26 00:33:21,127] [main][net.sf.ehcache.store.disk.DiskStorageFactory] DEBUG - Failed to delete file cache%0054est.index
[2016-06-26 00:33:21,144] [main][net.sf.ehcache.store.disk.DiskStorageFactory] DEBUG - Matching data file missing (or empty) for index file. Deleting index file C:\Users\ADMINI~1\AppData\Local\Temp\cache%0054est.index
[2016-06-26 00:33:21,146] [main][net.sf.ehcache.store.disk.DiskStorageFactory] DEBUG - Failed to delete file cache%0054est.index
[2016-06-26 00:33:21,235] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Pass-Through Statistic: LOCAL_OFFHEAP_SIZE
[2016-06-26 00:33:21,237] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Pass-Through Statistic: LOCAL_OFFHEAP_SIZE_BYTES
[2016-06-26 00:33:21,239] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Pass-Through Statistic: WRITER_QUEUE_LENGTH
[2016-06-26 00:33:21,241] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Pass-Through Statistic: REMOTE_SIZE
[2016-06-26 00:33:21,242] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Pass-Through Statistic: LAST_REJOIN_TIMESTAMP
[2016-06-26 00:33:21,266] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Operation Statistic: OFFHEAP_GET
[2016-06-26 00:33:21,268] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Operation Statistic: OFFHEAP_PUT
[2016-06-26 00:33:21,269] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Operation Statistic: OFFHEAP_REMOVE
[2016-06-26 00:33:21,272] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Operation Statistic: XA_COMMIT
[2016-06-26 00:33:21,274] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Operation Statistic: XA_ROLLBACK
[2016-06-26 00:33:21,275] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Operation Statistic: XA_RECOVERY
[2016-06-26 00:33:21,277] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Operation Statistic: CLUSTER_EVENT
[2016-06-26 00:33:21,278] [main][net.sf.ehcache.statistics.extended.ExtendedStatisticsImpl] DEBUG - Mocking Operation Statistic: NONSTOP
[2016-06-26 00:33:21,286] [main][net.sf.ehcache.Cache] DEBUG - Initialised cache: cacheTest
[2016-06-26 00:33:21,287] [main][net.sf.ehcache.config.ConfigurationHelper] DEBUG - CacheDecoratorFactory not configured. Skipping for 'cacheTest'.
[2016-06-26 00:33:21,287] [main][net.sf.ehcache.config.ConfigurationHelper] DEBUG - CacheDecoratorFactory not configured for defaultCache. Skipping for 'cacheTest'.
[2016-06-26 00:33:21,296] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:21,298] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'ehcache'
[2016-06-26 00:33:21,299] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:21,302] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Invoking afterPropertiesSet() on bean with name 'cacheManager'
[2016-06-26 00:33:21,304] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:21,306] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'cacheManager'
[2016-06-26 00:33:21,306] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.cache.annotation.AnnotationCacheOperationSource#0'
[2016-06-26 00:33:21,341] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Invoking afterPropertiesSet() on bean with name 'org.springframework.cache.interceptor.CacheInterceptor#0'
[2016-06-26 00:33:21,342] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Finished creating instance of bean 'org.springframework.cache.interceptor.CacheInterceptor#0'
[2016-06-26 00:33:21,343] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:21,343] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'cacheManager'
[2016-06-26 00:33:21,345] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'ehcache'
[2016-06-26 00:33:21,346] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
[2016-06-26 00:33:21,349] [main][org.springframework.context.support.GenericApplicationContext] DEBUG - Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [org.springframework.context.support.DefaultLifecycleProcessor@103b9fe]
[2016-06-26 00:33:21,350] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'lifecycleProcessor'
[2016-06-26 00:33:21,354] [main][org.springframework.core.env.PropertySourcesPropertyResolver] DEBUG - Searching for key 'spring.liveBeansView.mbeanDomain' in [systemProperties]
[2016-06-26 00:33:21,355] [main][org.springframework.core.env.PropertySourcesPropertyResolver] DEBUG - Searching for key 'spring.liveBeansView.mbeanDomain' in [systemEnvironment]
[2016-06-26 00:33:21,356] [main][org.springframework.core.env.PropertySourcesPropertyResolver] DEBUG - Could not find key 'spring.liveBeansView.mbeanDomain' in any property source. Returning [null]
[2016-06-26 00:33:21,358] [main][org.springframework.test.context.CacheAwareContextLoaderDelegate] DEBUG - Storing ApplicationContext in cache under key [[MergedContextConfiguration@1f256fa testClass = EhCacheTestServiceImplTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
[2016-06-26 00:33:21,364] [main][org.springframework.beans.factory.annotation.InjectionMetadata] DEBUG - Processing injected method of bean 'com.service.impl.EhCacheTestServiceImplTest': ResourceElement for private com.service.EhCacheTestService com.service.impl.EhCacheTestServiceImplTest.ehCacheTestService
[2016-06-26 00:33:21,367] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'ehCacheTestServiceImpl'
[2016-06-26 00:33:21,368] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
[2016-06-26 00:33:21,385] [main][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'org.springframework.cache.interceptor.CacheInterceptor#0'
[2016-06-26 00:33:21,443] [main][net.sf.ehcache.store.disk.Segment] DEBUG - put added 0 on heap
[2016-06-26 00:33:21,444] [main][com.service.impl.EhCacheTestServiceImplTest] INFO - First Invoke:1466872401441
[2016-06-26 00:33:21,500] [cache%0054est.data][net.sf.ehcache.store.disk.Segment] DEBUG - fault removed 0 from heap
[2016-06-26 00:33:21,500] [cache%0054est.data][net.sf.ehcache.store.disk.Segment] DEBUG - fault added 0 on disk
[2016-06-26 00:33:23,446] [main][com.service.impl.EhCacheTestServiceImplTest] INFO - Invoke After 2 second:1466872401441
[2016-06-26 00:33:34,483] [main][net.sf.ehcache.store.disk.Segment] DEBUG - remove deleted 0 from heap
[2016-06-26 00:33:34,484] [main][net.sf.ehcache.store.disk.Segment] DEBUG - remove deleted 0 from disk
[2016-06-26 00:33:34,485] [main][net.sf.ehcache.store.disk.Segment] DEBUG - put added 0 on heap
[2016-06-26 00:33:34,485] [main][com.service.impl.EhCacheTestServiceImplTest] INFO - Invoke After 11 second:1466872414485
[2016-06-26 00:33:34,486] [cache%0054est.data][net.sf.ehcache.store.disk.Segment] DEBUG - fault removed 0 from heap
[2016-06-26 00:33:34,487] [cache%0054est.data][net.sf.ehcache.store.disk.Segment] DEBUG - fault added 0 on disk
[2016-06-26 00:33:34,487] [main][org.springframework.test.context.support.DirtiesContextTestExecutionListener] DEBUG - After test method: context [[TestContext@108b2d7 testClass = EhCacheTestServiceImplTest, testInstance = com.service.impl.EhCacheTestServiceImplTest@154909b, testMethod = testGetTimestamp@EhCacheTestServiceImplTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1f256fa testClass = EhCacheTestServiceImplTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]], class dirties context [false], class mode [null], method dirties context [false].
[2016-06-26 00:33:34,493] [main][org.springframework.test.context.support.DirtiesContextTestExecutionListener] DEBUG - After test class: context [[TestContext@108b2d7 testClass = EhCacheTestServiceImplTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1f256fa testClass = EhCacheTestServiceImplTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]], dirtiesContext [false].
[2016-06-26 00:33:34,498] [Thread-2][org.springframework.context.support.GenericApplicationContext] INFO - Closing org.springframework.context.support.GenericApplicationContext@13fcdbd: startup date [Sun Jun 26 00:33:19 CST 2016]; root of context hierarchy
[2016-06-26 00:33:34,499] [Thread-2][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Returning cached instance of singleton bean 'lifecycleProcessor'
[2016-06-26 00:33:34,500] [Thread-2][org.springframework.beans.factory.support.DefaultListableBeanFactory] INFO - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@4a7dd4: defining beans [ehCacheTestServiceImpl,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.cache.annotation.AnnotationCacheOperationSource#0,org.springframework.cache.interceptor.CacheInterceptor#0,org.springframework.cache.config.internalCacheAdvisor,cacheManager,ehcache,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy
[2016-06-26 00:33:34,500] [Thread-2][org.springframework.beans.factory.support.DisposableBeanAdapter] DEBUG - Invoking destroy() on bean with name 'ehcache'
[2016-06-26 00:33:34,500] [Thread-2][org.springframework.cache.ehcache.EhCacheManagerFactoryBean] INFO - Shutting down EhCache CacheManager
[2016-06-26 00:33:34,541] [Thread-2][org.springframework.beans.factory.support.DefaultListableBeanFactory] DEBUG - Retrieved dependent beans for bean 'ehCacheTestServiceImpl': [com.service.impl.EhCacheTestServiceImplTest]

https://github.com/helloworldtang/ehcache_project

http://blog.csdn.net/u013142781/article/details/50507607

Spring+EhCache缓存实例(详细讲解+源码下载)(转)的更多相关文章

  1. Spring+EhCache缓存实例(具体解说+源代码下载)

    一.ehcahe的介绍 EhCache 是一个纯Java的进程内缓存框架,具有高速.精干等特点,是Hibernate中默认的CacheProvider.Ehcache是一种广泛使用的开源Java分布式 ...

  2. Spring+EhCache缓存实例(详细讲解+源码下载)

    一.ehcahe的介绍 EhCache 是一个纯Java的进程内缓存框架,具有快速.精干等特点,是Hibernate中默认的CacheProvider.Ehcache是一种广泛使用的开源Java分布式 ...

  3. Spring1:Spring简介、环境搭建、源码下载及导入MyEclipse

    框架学习前言 这个模块是面向Spring的,Spring的学习我是这么想的: 1.简单介绍Spring,主要是从网上借鉴一些重点 2.尽量说明清楚Spring的使用方法以及细节点 3.尽量以自己的理解 ...

  4. 转载:Spring+EhCache缓存实例

    转载来自:http://www.cnblogs.com/mxmbk/articles/5162813.html 一.ehcahe的介绍 EhCache 是一个纯Java的进程内缓存框架,具有快速.精干 ...

  5. Spring+EhCache缓存实例

    一.ehcahe的介绍 EhCache 是一个纯Java的进程内缓存框架,具有快速.精干等特点,是Hibernate中默认的CacheProvider.Ehcache是一种广泛使用的开源Java分布式 ...

  6. 不用找了,比较全的signalR例子已经为你准备好了(2)---JqGrid 服务端刷新方式-注释详细-DEMO源码下载

    上次用客户端进行数据刷新的方式,和官方的Demo实现存在差异性,今天花了一点时间好好研究了一下后台时时刷新的方式.将写的代码重新update了一次,在这之前找过好多的资料,发现都没有找到好的例子,自己 ...

  7. 基于spring-boot和docker-java实现对docker容器的动态管理和监控[附完整源码下载]

    ​ (我是个封面) docker简介 Docker 是一个开源的应用容器引擎,和传统的虚拟机技术相比,Docker 容器性能开销极低,因此也广受开发者喜爱.随着基于docker的开发者越来越多,doc ...

  8. Spring中@Transactional事务回滚(含实例详细讲解,附源码)

    一.使用场景举例 在了解@Transactional怎么用之前我们必须要先知道@Transactional有什么用.下面举个栗子:比如一个部门里面有很多成员,这两者分别保存在部门表和成员表里面,在删除 ...

  9. 超详细的php用户注册页面填写信息完整实例(附源码)

    这篇文章主要介绍了一个超详细的php用户注册页面填写信息完整实例,内容包括邮箱自动匹配.密码强度验证以及防止表单重复等,小编特别喜欢这篇文章,推荐给大家. 注册页面是大多数网站必备的页面,所以很有必要 ...

随机推荐

  1. web开发注意的一些事

    js命名不要包含"-",在chrome浏览器是测试发现,如果文件包含"-",即使指定js本地缓存了,还会向服务器发送请求. cookie path 区分大小写

  2. perl5 第十章 格式化输出

    第十章 格式化输出 by flamephoenix 一.定义打印格式二.显示打印格式三.在打印格式中显示值  1.通用的打印格式  2.格式和局域变量  3.选择值域格式  4.输出值域字符四.输出到 ...

  3. MFC自绘控件学习总结

    前言:从这学期开始就一直在学习自绘控件(mfc),目标是做出一款播放器界面,主要是为了打好基础,因为我基础实在是很烂....说说我自己心得体会以及自绘控件的方法吧,算是吐槽吧,说的不对和不全的地方,或 ...

  4. flex正则表达式

    正则表达式是一种通用的标准,大部分计算机语言都支持正则表达式,包括as3,这里收集了一些常用的正则表达式语句,大家用到的时候就不用自己写了 ^\d+$ //匹配非负整数(正整数 + 0) ^[0-9] ...

  5. UIPickView之自定义生日键盘和城市键盘

    ////  ViewController.m//  04-键盘处理// // #import "ViewController.h"#import "XMGProvince ...

  6. nginx自定义模块记录上游服务器特定响应头

    功能,服务器通过扩展自定义命令,记录上游的服务器返回的特定响应头内容,记录到本地文件中 代码如下: /* * Copyright (C) Ciaos */ #include <ngx_confi ...

  7. [置顶] js综合应用:表格的四则运算

    在做调查问卷的过程中,遇到一个表格的统计问题,算是需要些js方面的综合知识,所以记录下来. 在上次完成了基本的求和的基础上,添加了基本的加减乘除四则运算. 基本需求简化后如下: 对应的htm了为: & ...

  8. 移动开发语言Swift

    苹果公布了全新的编程语言Swift,Swift继承了Objective-C语言特性,并从Python和Java Script中长处,使Swift更易读.未来swift编程语言的会特大广大的使用 Swi ...

  9. 没有login页面

    "/"应用程序中的服务器错误. 无法找到资源. 说明:HTTP 404.您正在查找的资源(或者它的一个依赖项)可能已被移除,或其名称已更改,或暂时不可用.请检查以下 URL 并确保 ...

  10. iOS中的 SB和XIB的前世今生

    今天给大家介绍一下Apple开发中三种几种常用的应用程序编写方式:纯代码创建.使用storyboard/XIB.我们都知道,纯代码编写模式适合大型项目大规模使用,利于版本管理.追踪改动以及代码合并,代 ...