Merge pull request #307 from shining-stars-lk/develop

Fixed official website issues
pull/311/head
小马哥 2 years ago committed by GitHub
commit 14da9298c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,7 @@ sidebar_position: 6
Hippo4J 目前已支持的三方框架线程池列表: Hippo4J 目前已支持的三方框架线程池列表:
- Dubbo - Dubbo
- Hystrix
- RabbitMQ - RabbitMQ
- RocketMQ - RocketMQ
- RocketMQSpringCloudStream - RocketMQSpringCloudStream
@ -18,6 +19,8 @@ Hippo4J 目前已支持的三方框架线程池列表:
<groupId>cn.hippo4j</groupId> <groupId>cn.hippo4j</groupId>
<!-- Dubbo --> <!-- Dubbo -->
<artifactId>hippo4j-spring-boot-starter-adapter-dubbo</artifactId> <artifactId>hippo4j-spring-boot-starter-adapter-dubbo</artifactId>
<!-- Hystrix -->
<artifactId>hippo4j-spring-boot-starter-adapter-hystrix</artifactId>
<!-- RabbitMQ --> <!-- RabbitMQ -->
<artifactId>hippo4j-spring-boot-starter-adapter-rabbitmq</artifactId> <artifactId>hippo4j-spring-boot-starter-adapter-rabbitmq</artifactId>
<!-- RocketMQ --> <!-- RocketMQ -->
@ -34,7 +37,7 @@ Hippo4J 目前已支持的三方框架线程池列表:
<dependency> <dependency>
<groupId>cn.hippo4j</groupId> <groupId>cn.hippo4j</groupId>
<artifactId>hippo4j-spring-boot-starter-adapter-all</artifactId> <artifactId>hippo4j-spring-boot-starter-adapter-all</artifactId>
<version>1.3.0</version> <version>1.3.1</version>
</dependency> </dependency>
``` ```

@ -35,12 +35,14 @@ Hippo4J 很好解决了这些问题,它将业务中所有线程池统一管理
Hippo4J 除去动态修改线程池,还包含实时查看线程池运行时指标、负载报警、配置日志管理等。 Hippo4J 除去动态修改线程池,还包含实时查看线程池运行时指标、负载报警、配置日志管理等。
- `hippo4j-adapter`适配对第三方框架中的线程池进行监控如dubbo、rocketmq、hystrix等
- `hippo4j-auth`:用户、角色、权限等; - `hippo4j-auth`:用户、角色、权限等;
- `hippo4j-common`:多个模块公用代码实现; - `hippo4j-common`:多个模块公用代码实现;
- `hippo4j-config`:提供线程池准实时参数更新功能; - `hippo4j-config`:提供线程池准实时参数更新功能;
- `hippo4j-console`:对接 Web 前端项目; - `hippo4j-console`:对接 Web 前端项目;
- `hippo4j-core`:核心的依赖,包括配置、核心包装类等;
- `hippo4j-discovery`:提供线程池项目实例注册、续约、下线等功能; - `hippo4j-discovery`:提供线程池项目实例注册、续约、下线等功能;
- `hippo4j-spring-boot-starter`:负责与 Server 端交互的依赖组件;
- `hippo4j-example` :示例工程; - `hippo4j-example` :示例工程;
- `hippo4j-server` :聚合 Server 端发布需要的模块; - `hippo4j-server` :聚合 Server 端发布需要的模块;
- `hippo4j-tools` :操作日志等组件代码。 - `hippo4j-spring-boot`:负责与 Server 端交互的依赖组件;
- `hippo4j-tool` :操作日志等组件代码。

@ -14,7 +14,7 @@ Clone Hippo4J [源代码](https://github.com/longtai-cn/hippo4j),导入初始
1. 导入 [Hippo4J 初始化 SQL 语句](https://github.com/longtai-cn/hippo4j/blob/develop/hippo4j-server/conf/hippo4j_manager.sql) 1. 导入 [Hippo4J 初始化 SQL 语句](https://github.com/longtai-cn/hippo4j/blob/develop/hippo4j-server/conf/hippo4j_manager.sql)
2. 启动 [Hippo4J-Server](https://github.com/longtai-cn/hippo4j/tree/develop/hippo4j-server) 模块下 ServerApplication 应用类; 2. 启动 [Hippo4J-Server](https://github.com/longtai-cn/hippo4j/tree/develop/hippo4j-server) 模块下 ServerApplication 应用类;
3. 启动 [Hippo4J-Example](https://github.com/longtai-cn/hippo4j/tree/develop/hippo4j-example) 模块下 ExampleApplication 应用类。 3. 启动 [Hippo4J-spring-boot-starter-example](https://github.com/mabaiwan/hippo4j/tree/develop/hippo4j-example/hippo4j-spring-boot-starter-example) 模块下 Hippo4JServerExampleApplication 应用类;
通过接口修改线程池中的配置。HTTP POST 路径:`http://localhost:6691/hippo4j/v1/cs/configs`Body 请求体如下: 通过接口修改线程池中的配置。HTTP POST 路径:`http://localhost:6691/hippo4j/v1/cs/configs`Body 请求体如下:

Loading…
Cancel
Save