@IocBean // 声明为Ioc容器中的一个Bean
@At("/test") // 整个模块的路径前缀
@Ok("json:{locked:'password|salt',ignoreNull:true}") // 忽略password和salt属性,忽略空属性的json输出
@Fail("http:500") // 抛出异常的话,就走500页面
public class TestModule extends BaseModule{
@At("/test")
public void test(){
try {
MemcachedClient mc1 = MemcachedClientFactory.getInstance();
System.out.println(mc1.get("test"));
System.out.println("调用test()方法===================");
} catch (IOException e) {
e.printStackTrace();
}
}
@At("/add")
public void add() throws IOException{
HashMap<String, String> map =new HashMap<String, String>();
map.put("test","testtest");
MemcachedUtil.putMemcacheIntanceByTime(map, Constants.XCJ_MEMCACHED_TOKEN_TIMING);
System.out.println("调用add()方法===================");
}
@At("/delete")
public void delete(){
try {
MemcachedClient mc1 = MemcachedClientFactory.getInstance();
mc1.delete("test");
System.out.println("调用delete()方法===================");
} catch (IOException e) {
e.printStackTrace();
}
}
}
其中test和add方法是这样的,但是delete方法没事,不懂为什么?bug?