@Component public class temperature { @Autowired private RestTemplate restTemplate; public static ArrayList date = new ArrayList(); public static ArrayList temperature = new ArrayList(); public static ArrayList windSpeed = new ArrayList(); @PostConstruct public void init() { String url = "https://mock.mengxuegu.com/mock/643e52da56377f1ed96c16c6/dataFetcher"; JSONObject forObject = restTemplate.getForObject(url, JSONObject.class); date = forObject.get("date", ArrayList.class); temperature = forObject.get("temperature", ArrayList.class); windSpeed = forObject.get("windspeed", ArrayList.class); test(); //windspeed.test(windSpeed); } public void test() { // 将数组转换为List,便于后续处理 // 将List分成14组 List<Integer> temperature = new ArrayList<>(); // 假设已存在的温度数据已经存储在temperature中 int groupSize = 24; int groupCount = temperature.size() / groupSize; for (int i = 0; i < groupCount; i++) { int startIndex = i * groupSize; int endIndex = startIndex + groupSize; List<Integer> group = temperature.subList(startIndex, endIndex); int min = Integer.MAX_VALUE; int max = Integer.MIN_VALUE; for (int value : group) { if (value < min) { min = value; } if (value > max) { max = value; } } System.out.println("Group " + (i + 1) + ": min = " + min + ", max = " + max); } int firstHalfMax = Integer.MIN_VALUE; int secondHalfMax = Integer.MIN_VALUE; for (int i = 0; i < temperature.size(); i++) { int value = temperature.get(i); if (i < temperature.size() / 2 && value > firstHalfMax) { firstHalfMax = value; } if (i >= temperature.size() / 2 && value > secondHalfMax) { secondHalfMax = value; } } System.out.println("First half max = " + firstHalfMax); System.out.println("Second half max = " + secondHalfMax); }
时间: 2023-07-14 08:13:41 浏览: 149
这段代码主要是获取一个模拟的天气数据并进行处理。首先使用RestTemplate发送一个HTTP请求获取JSON格式的天气数据,然后将其分别存储在三个ArrayList中,分别为日期(date)、温度(temperature)和风速(windSpeed)。然后对温度进行一些处理,将其分成14组,每组包含24个数据,在每组中求出最小值和最大值,并输出到控制台。然后再找出前半部分和后半部分中的最大值,并同样输出到控制台。整个过程是在类初始化时进行的,使用了@PostConstruct注解,表示在初始化后立即执行。
相关问题
不是这个意思,我给你看下我的代码: 这是我的泛型接口: @Component public interface TaskletService<T> { List<T> match(List<String> strList, Map<String,Object> map) throws ParseException; } 这是针对接口的策略实现类,有10个,我只列举三个: @Component public class ADLoanEntity4Tasklet implements TaskletService<LoanEntity> { @Override public List<LoanEntity> match(List<String> strList, Map<String, Object> map) throws ParseException { List<LoanEntity> list = new ArrayList<>(); return list; } } @Component public class ABLoanEntity4Tasklet implements TaskletService<LoanEntity> { @Override public List<LoanEntity> match(List<String> strList, Map<String, Object> map) throws ParseException { List<LoanEntity> list = new ArrayList<>(); return list; } } @Component public class ADLoanHisEntity4Tasklet implements TaskletService<LoanHisEntity> { @Override public List<LoanHisEntity> match(List<String> strList, Map<String, Object> map) throws ParseException { List<LoanHisEntity> list = new ArrayList<>(); return list; } } 这是Context类: @Component public class TaskletContext<T> { private TaskletService<T> taskletService; @Autowired public void setTaskletService(TaskletService<T> taskletService) { this.taskletService = taskletService; } public List<T> executeTaskletService(List<String> strList, Map<String,Object> map) throws ParseException { return taskletService.match(strList,map); } } 我现在想在main方法中去调用ADLoanEntity4Tasklet,ABLoanEntity4Tasklet,ADLoanHisEntity4Tasklet去处理不同的业务,请问该如何调用?
根据你提供的代码,你可以在 `main` 方法中创建 `TaskletContext` 对象,并使用 `setTaskletService` 方法来设置具体的实现类,然后调用 `executeTaskletService` 方法来执行相应的业务逻辑。
以下是一个示例的 `main` 方法,演示了如何调用不同的业务逻辑:
```java
public static void main(String[] args) throws ParseException {
// 创建 Spring 应用上下文
ApplicationContext context = new AnnotationConfigApplicationContext(YourConfigClass.class);
// 创建 TaskletContext 对象
TaskletContext<LoanEntity> entityContext = context.getBean(TaskletContext.class);
// 创建 TaskletContext 对象
TaskletContext<LoanHisEntity> hisEntityContext = context.getBean(TaskletContext.class);
// 调用 ADLoanEntity4Tasklet 处理业务
entityContext.setTaskletService(context.getBean(ADLoanEntity4Tasklet.class));
List<LoanEntity> loanEntityList = entityContext.executeTaskletService(strList, map);
// 调用 ABLoanEntity4Tasklet 处理业务
entityContext.setTaskletService(context.getBean(ABLoanEntity4Tasklet.class));
loanEntityList = entityContext.executeTaskletService(strList, map);
// 调用 ADLoanHisEntity4Tasklet 处理业务
hisEntityContext.setTaskletService(context.getBean(ADLoanHisEntity4Tasklet.class));
List<LoanHisEntity> loanHisEntityList = hisEntityContext.executeTaskletService(strList, map);
// 其他业务处理...
}
```
在这个示例中,我们首先创建了一个 Spring 应用上下文,在上下文中获取了 `TaskletContext` 的实例。然后,我们可以通过 `setTaskletService` 方法来设置具体的实现类,例如 `ADLoanEntity4Tasklet`、`ABLoanEntity4Tasklet` 和 `ADLoanHisEntity4Tasklet`。接下来,我们可以调用 `executeTaskletService` 方法来执行相应的业务逻辑,并获取返回的结果。
请根据你的实际需求修改和扩展这个示例,以适应你的业务逻辑。
我把我现在的代码给你看下,报错的是:"Parameter 0 of method setTaskletService in com.uniinclusive.jxgfcs.taskletimpl.TaskletContext required a single bean, but 10 were found",代码内容如下: @Component public class TaskletContext<T> { private TaskletService<T> taskletService; @Autowired public void setTaskletService(TaskletService<T> taskletService) { this.taskletService = taskletService; } public List<T> executeTaskletService(List<String> strList, Map<String,Object> map) throws ParseException { return taskletService.match(strList,map); } } @Component public interface TaskletService<T> { List<T> match(List<String> strList, Map<String,Object> map) throws ParseException; } @Component public class ADLoanEntity4Tasklet implements TaskletService<LoanEntity> { @Override public List<LoanEntity> match(List<String> strList, Map<String, Object> map) throws ParseException { List<LoanEntity> list = new ArrayList<>(); return list; } } @Component public class AFFLoanEntity4Tasklet implements TaskletService<LoanEntity> { @Resource private LoanDao loanDao; //字符长度 private final int strLength = 22; @Override public List<LoanEntity> match(List<String> strList, Map<String,Object> map) throws ParseException { List<LoanEntity> list = new ArrayList<>(); return list; } }
根据你提供的代码,出现报错的原因是在 `TaskletContext` 类的 `setTaskletService` 方法中存在多个符合条件的 `TaskletService<T>` bean。
为了解决这个问题,你可以尝试以下几种方法:
1. 使用 `@Qualifier` 注解明确指定要注入的 bean。你可以在 `setTaskletService` 方法上添加 `@Qualifier` 注解,并指定要注入的 bean 的名称,如下所示:
```java
@Autowired
public void setTaskletService(@Qualifier("adLoanEntity4Tasklet") TaskletService<T> taskletService) {
this.taskletService = taskletService;
}
```
在这个示例中,我们使用 `@Qualifier("adLoanEntity4Tasklet")` 来明确指定要注入的是名为 "adLoanEntity4Tasklet" 的 bean。请确保在相应的类上添加了 `@Component("adLoanEntity4Tasklet")` 注解来标识该 bean。
2. 使用 `@Primary` 注解来指定默认的 bean。你可以在实现 `TaskletService<T>` 接口的类上添加 `@Primary` 注解,如下所示:
```java
@Component
@Primary
public class ADLoanEntity4Tasklet implements TaskletService<LoanEntity> {
// ...
}
```
在这个示例中,我们使用 `@Primary` 注解来标识 `ADLoanEntity4Tasklet` 类是默认的 bean。当存在多个匹配的 bean 时,Spring 会优先选择带有 `@Primary` 注解的 bean。
3. 手动指定要注入的 bean。你可以直接在 `main` 方法中手动指定要注入的 bean,如下所示:
```java
public static void main(String[] args) {
// ...
// 使用 ADLoanEntity4Tasklet 执行
main.taskletContext.setTaskletService(main.adLoanEntity4Tasklet);
// ...
// 使用 AFFLoanEntity4Tasklet 执行
main.taskletContext.setTaskletService(main.affLoanEntity4Tasklet);
// ...
}
```
在这个示例中,我们手动指定了要注入的 `adLoanEntity4Tasklet` 和 `affLoanEntity4Tasklet` 对象。
请根据你的实际需求选择适合的解决方法,并确保只有一个唯一的 bean 被注入到 `setTaskletService` 方法中。如果问题仍然存在,请提供更多的代码和配置信息,以便我更好地帮助你解决问题。
阅读全文