mirror of
https://gitee.com/xchao/j-im.git
synced 2024-12-02 11:57:43 +08:00
commit
65b6594c70
@ -29,9 +29,9 @@ public class JedisTemplate implements Serializable{
|
||||
|
||||
private static final long serialVersionUID = 9135301078135982677L;
|
||||
private static final Logger logger = LoggerFactory.getLogger(JedisTemplate.class);
|
||||
private static JedisTemplate instance = null;
|
||||
private static volatile JedisTemplate instance = null;
|
||||
private static JedisPool jedisPool = null;
|
||||
private static Jedis jedis = null;
|
||||
private static volatile Jedis jedis = null;
|
||||
private static RedisConfiguration redisConfig = null;
|
||||
private JedisTemplate (){}
|
||||
|
||||
|
@ -16,7 +16,7 @@ public class RedissonTemplate implements Serializable{
|
||||
|
||||
private static final long serialVersionUID = -4528751601700736437L;
|
||||
private static final Logger logger = LoggerFactory.getLogger(RedissonTemplate.class);
|
||||
private static RedissonTemplate instance = null;
|
||||
private static volatile RedissonTemplate instance = null;
|
||||
private static RedisConfiguration redisConfig = null;
|
||||
private static final String REDIS = "redis";
|
||||
private static RedissonClient redissonClient = null;
|
||||
|
@ -37,7 +37,7 @@ public class HttpResponse extends HttpPacket {
|
||||
private boolean isStaticRes = false;
|
||||
|
||||
private HttpRequest request = null;
|
||||
private List<Cookie> cookies = null;
|
||||
private volatile List<Cookie> cookies = null;
|
||||
|
||||
// private int contentLength;
|
||||
// private byte[] bodyBytes;
|
||||
|
Loading…
Reference in New Issue
Block a user