Authored by hugufei

测试代码的bug

... ... @@ -37,7 +37,7 @@ public class TestEhcacheController {
@RequestMapping(value = "/testGet")
@ResponseBody
public Map<String, Object> testGet(int count) {
for (int i=0;i<count;i++) {
for (int i=1;i<=count;i++) {
System.out.println("Key"+i+"_"+ehCache.exist("Key"+i));
}
System.out.println(ehCache.getStatistics());
... ...