gpt4 book ai didi

multithreading - Spring @Async 限制线程数

转载 作者:IT老高 更新时间:2023-10-28 13:50:25 25 4
gpt4 key购买 nike

我的问题与这个问题非常相似:@Async prevent a thread to continue until other thread have finished

基本上我需要在更多线程中运行〜数百次计算。我只想运行一些并行线程,例如5线程5计算并行。

我正在使用 spring 框架,@Async 选项是自然的选择。我不需要功能齐全的 JMS 队列,这对我来说有点开销。

有什么想法吗?谢谢

最佳答案

如果你使用 Spring 的 Java 配置,你的配置类需要实现 AsyncConfigurer:

@Configuration
@EnableAsync
public class AppConfig implements AsyncConfigurer {

[...]

@Override
public Executor getAsyncExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(2);
executor.setMaxPoolSize(5);
executor.setQueueCapacity(50);
executor.setThreadNamePrefix("MyExecutor-");
executor.initialize();
return executor;
}
}

请参阅 @EnableAsync 文档了解更多详细信息:http://docs.spring.io/spring/docs/3.1.x/javadoc-api/org/springframework/scheduling/annotation/EnableAsync.html

关于multithreading - Spring @Async 限制线程数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13206792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com