fix: 忽略未配置的天气地址

This commit is contained in:
xiaozzzi 2024-02-05 19:36:48 +08:00
parent 7bef8719af
commit 08d05b30b4

View File

@ -1,12 +1,12 @@
package com.blossom.backend.thirdparty;
import cn.hutool.core.util.StrUtil;
import com.blossom.backend.base.user.UserService;
import com.blossom.backend.base.user.pojo.UserEntity;
import com.blossom.backend.thirdparty.hefeng.WeatherManager;
import com.blossom.common.base.pojo.R;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@ -20,7 +20,6 @@ import java.util.stream.Collectors;
*
* @author : xzzz
*/
@Component
@RestController
@RequestMapping("/thirdparty/scheduled")
public class ThirdPartyScheduled {
@ -42,6 +41,9 @@ public class ThirdPartyScheduled {
List<UserEntity> users = userService.listAll();
Set<String> locations = users.stream().collect(Collectors.groupingBy(UserEntity::getLocation)).keySet();
for (String location : locations) {
if (StrUtil.isBlank(location)) {
continue;
}
weatherManager.clear(location);
weatherManager.findWeatherAll(location);
}