This commit is contained in:
Yutousama 2021-05-08 23:08:21 +08:00
parent fc91057f5b
commit 6cc210a25e
4 changed files with 15 additions and 9 deletions

View File

@ -28,8 +28,9 @@ public class GoogleAccount {
* @param s window size - must be >=1 and <=17. Other values are ignored
*/
public void setWindowSize(int s) {
if (s >= 1 && s <= 17)
if (s >= 1 && s <= 17) {
window_size = s;
}
}
/**

View File

@ -5,10 +5,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ToolsApplication {
public static final String version="1.1.0";
public static final String version="1.1.1";
public static void main(String[] args) {
System.out.println("当前版本号:" + version);
SpringApplication.run(ToolsApplication.class, args);
}
}
}

View File

@ -29,14 +29,17 @@ public class AnimationController {
@RequestMapping(value = "rss/data.do", method = RequestMethod.GET)
public String getAnimList(String key,String type,String team, int page) {
boolean isNull = key.length() == 0;
if(!StringUtils.isEmpty(type)&&type.length()>2)
type=type.substring(2);
if(!StringUtils.isEmpty(team)&&team.length()>2)
if(!StringUtils.isEmpty(type)&&type.length()>2) {
type=type.substring(2);
}
if(!StringUtils.isEmpty(team)&&team.length()>2) {
team=team.substring(2);
}
String[] keys = key.split(" ");
JSONArray items = null;
if (!isNull)
if (!isNull) {
items = new AnimationData().bangumiList(page,type,team, keys);
}
JSONObject json = new JSONObject();
if (items != null) {
json.put("data", items);

View File

@ -188,16 +188,18 @@ public class RedisTools {
private static boolean init = false;
public static void initRedisPoolSub() {
if (init)
if (init) {
return;
}
init = true;
System.out.println("初始化订阅");
new Thread(new Runnable() {
@Override
public void run() {
Jedis jedis = getPoolRedis();
if (jedis != null)
if (jedis != null) {
jedis.psubscribe(new Consumer(), "*");
}
}
}).start();