修复Redis返回默认值的问题
This commit is contained in:
parent
d7a882cf8f
commit
45ce18edac
@ -9,7 +9,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class ToolsApplication {
|
||||
public static final String version="1.0.15.03";
|
||||
public static final String version="1.0.15.04";
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("当前版本号:"+version);
|
||||
|
@ -248,7 +248,7 @@ public class BangumiTools {
|
||||
*/
|
||||
public static String reportToDayBangumi() {
|
||||
String toDayTime = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
|
||||
if (!RedisTools.get("reportToDayBangumi").equals(toDayTime)) {
|
||||
if (!toDayTime.equals(RedisTools.get("reportToDayBangumi"))) {
|
||||
RedisTools.set("reportToDayBangumi", toDayTime);
|
||||
StringBuilder builder = new StringBuilder();
|
||||
JSONObject toDay = getBangumi(0);
|
||||
|
@ -80,7 +80,7 @@ public class tools {
|
||||
json.put("params", params);
|
||||
json.put("cookie", cookies);
|
||||
json.put("header", header);
|
||||
Tools.sendServer("打印请求", json.toJSONString());
|
||||
//Tools.sendServer("打印请求", json.toJSONString());
|
||||
try {
|
||||
switch (RedisTools.get("request")){
|
||||
case "success":
|
||||
|
@ -80,21 +80,13 @@ public class RedisTools {
|
||||
if (isNotInstallRedis) {
|
||||
return value;
|
||||
}
|
||||
Jedis jedis = null;
|
||||
try {
|
||||
jedis = getRedis();
|
||||
try (Jedis jedis = getRedis()) {
|
||||
jedis.select(dbIndex);
|
||||
value = jedis.get(key);
|
||||
jedis.close();
|
||||
} catch (Exception e) {
|
||||
// TODO: handle exception
|
||||
// e.printStackTrace();
|
||||
} finally {
|
||||
if (jedis != null)
|
||||
jedis.close();
|
||||
}
|
||||
if(value==null){
|
||||
value="-999";
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user