摘要:
传递数据时,需要去除掉空值以及空字符串,使用map对数据进行处理,从而实现需求 public static Map<String, Object> removeMapKey(Map param) { Set set = param.keySet(); for (Iterator iterator = 阅读全文
摘要:
Could not create server TCP listening socket *:6379,提供了一个无效信息. 第一种办法是修改Redis配置文件,修改redis.windows.conf,把bind 127.0.0.1的注释去掉 我之前部署的时候已经配置过这个了,就采用了第二种方式, 阅读全文