在onJfinalStartAfter 启动一个线程 调用Redis.use时Cache 有时候返回的对象是null
--------------------------------------------
null
java.lang.NullPointerException
at com.cn.xp.social.group.utils.RedisUtils.removePreAdd(RedisUtils.java:73)
at com.cn.xp.social.group.netty.HeartBeatServerHandler.removeUserMap(HeartBeatServerHandler.java:67)
---------------------------------------------------------------
/**
*
* @Description: 移除需要通知密聊状态的队列
* @param userId
* @return
*/
public static void removePreAdd(String userId) {
Cache cache = Redis.use(Constant.MAIN_REDIS);
System.out.println(cache);
cache.del(RedisUtils.PRE_NOTICE + userId);
}
项目:JFinal
http://www.jfinal.com/doc/8-4