https://github.com/franzhaidnor/haidnor-executor-starter
Java dynamic thread pool
https://github.com/franzhaidnor/haidnor-executor-starter
java springboot springboot3 thread threadpoolexecutor
Last synced: 2 months ago
JSON representation
Java dynamic thread pool
- Host: GitHub
- URL: https://github.com/franzhaidnor/haidnor-executor-starter
- Owner: FranzHaidnor
- Created: 2023-07-28T07:46:24.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-29T12:46:14.000Z (almost 3 years ago)
- Last Synced: 2025-03-05T05:16:50.264Z (over 1 year ago)
- Topics: java, springboot, springboot3, thread, threadpoolexecutor
- Language: JavaScript
- Homepage:
- Size: 282 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# haidnorExecutor
Java 动态弹性线程池实现。快速集成于 SpringBoot 项目。提供 WEB 线程池控制页面,可实时查看线程池运行信息,动态修改线程池运行参数,暂停启动线程池运行状态。
# MAVEN
```xml
haidnor
haidnor-executor
1.0
```
# 动态线程池控制台
服务启动后访问链接 http://127.0.0.1:8080/thread.html 可进入线程池控制台。可对线程池进行动态设置。

# API
获取动态线程池
```java
ThreadPoolExecutor executor = ThreadPoolService.getExecutor();
```