@At
@Ok("json:full")
@Aop("redis")
public Record setrank(HttpServletRequest req){
Record r = new Record();
try {
return jedis().info();
} catch (Exception e) {
r.put("code",500);
r.put("msg",e.getMessage());
return r;
}
return r;
}
添加回复
请先登陆