Skip to content

Commit 4903330

Browse files
committed
fix
2 parents 652dfd3 + d76d383 commit 4903330

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ protected void afterExecute(Runnable r, Throwable t);
8484
>
8585
> 4. 集成常用三方中间件内部线程池管理
8686
87-
**经过多个版本的迭代,目前最新版本 v1.2.1 具有以下特性**
87+
**经过多个版本的迭代,目前最新版本 v1.2.2 具有以下特性**
8888

8989
- **代码零侵入**:我们改变了线程池以往的使用姿势,所有配置均放在配置中心,服务启动时会从配置中心拉取配置生成线程池对象放到 Spring 容器中,使用时直接从 Spring 容器中获取,对业务代码零侵入
9090

@@ -98,7 +98,7 @@ protected void afterExecute(Runnable r, Throwable t);
9898

9999
- **多配置中心支持**:支持多种主流配置中心,包括 Nacos、Apollo、Zookeeper、Consul、Etcd、Polaris、ServiceComb,同时也提供 SPI 接口可自定义扩展实现
100100

101-
- **中间件线程池管理**:集成管理常用第三方组件的线程池,已集成 Tomcat、Jetty、Undertow、Dubbo、RocketMq、Hystrix、Grpc、Motan、Okhttp3、Brpc、Tars、SofaRpc、RabbitMq、Liteflow 等组件的线程池管理(动态调参、监控、报警)
101+
- **中间件线程池管理**:集成管理常用第三方组件的线程池,已集成 Tomcat、Jetty、Undertow、Dubbo、RocketMq、Hystrix、Grpc、Motan、Okhttp3、Brpc、Tars、SofaRpc、RabbitMq、Liteflow、Thrift 等组件的线程池管理(动态调参、监控、报警)
102102

103103
- **多模式**:提供了增强线程池 DtpExecutor,IO 密集型场景使用的线程池 EagerDtpExecutor,调度线程池 ScheduledDtpExecutor,有序线程池 OrderedDtpExecutor,可以根据业务场景选择合适的线程池
104104

dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<url>https://github.com/yanhom1314/dynamic-tp</url>
1313

1414
<properties>
15-
<revision>1.2.1-x</revision>
15+
<revision>1.2.2-x</revision>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717

1818
<maven.compiler.source>17</maven.compiler.source>

example/example-adapter/example-adapter-thrift/src/main/java/org/dromara/dynamictp/example/thrift/service/SimpleService.java

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<url>https://github.com/yanhom1314/dynamic-tp</url>
1616

1717
<properties>
18-
<revision>1.2.1-x</revision>
18+
<revision>1.2.2-x</revision>
1919
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2020

2121
<maven.compiler.source>17</maven.compiler.source>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.dromara.dynamictp.starter.adapter.liteflow.autoconfigure.LiteflowTpAutoConfiguration
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.dromara.dynamictp.starter.adapter.thrift.autoconfigure.ThriftTpAutoConfiguration

0 commit comments

Comments
 (0)