{"id":37795025,"url":"https://github.com/wendy512/stream","last_synced_at":"2026-01-16T15:19:38.444Z","repository":{"id":169265971,"uuid":"642195414","full_name":"wendy512/stream","owner":"wendy512","description":"Streaming processing framework, source, channel, sink, support mqtt, Kafka and other components","archived":false,"fork":false,"pushed_at":"2024-08-26T05:44:08.000Z","size":156,"stargazers_count":512,"open_issues_count":1,"forks_count":90,"subscribers_count":70,"default_branch":"master","last_synced_at":"2024-08-27T04:50:29.942Z","etag":null,"topics":["asynchronous","high-performance","java","kafka","mqtt","mulithreading","queue","rabbitmq"],"latest_commit_sha":null,"homepage":"https://github.com/wendy512/stream","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wendy512.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-18T03:08:44.000Z","updated_at":"2024-08-26T03:29:44.000Z","dependencies_parsed_at":"2024-05-07T09:41:17.722Z","dependency_job_id":"758f79cf-aeda-440c-9dc0-15d723944e8f","html_url":"https://github.com/wendy512/stream","commit_stats":null,"previous_names":["wendy512/stream"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/wendy512/stream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendy512%2Fstream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendy512%2Fstream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendy512%2Fstream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendy512%2Fstream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wendy512","download_url":"https://codeload.github.com/wendy512/stream/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wendy512%2Fstream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asynchronous","high-performance","java","kafka","mqtt","mulithreading","queue","rabbitmq"],"created_at":"2026-01-16T15:19:37.753Z","updated_at":"2026-01-16T15:19:38.430Z","avatar_url":"https://github.com/wendy512.png","language":"Java","funding_links":[],"categories":["进程间通信"],"sub_categories":["Spring Cloud框架"],"readme":"# Stream\n\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.wendy512/stream/badge.svg)](https://search.maven.org/search?q=g:io.github.wendy512%20AND%20stream-core)\n[![License](https://img.shields.io/badge/license-Apache--2.0-green.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)\n\nEnglish | [中文](README_zh_CN.md)\n\n## Overview\nStream supports lightweight messaging within Spring-based applications and supports integration with external systems through declarative adapters. These adapters provide a higher level of abstraction than Spring's support for remote processing, messaging, and scheduling. The main goal of Stream is to provide a simple model for building enterprise integration solutions while maintaining separation of concerns, which is essential for producing maintainable and testable code.\n\nLightweight messaging within Stream-based applications, such applications are built by assembling fine-grained reusable components to form higher-level functions. Through careful design, these processes can be modularized and reused at a higher level. Stream also provides a variety of channel adapters and gateways for communicating with external systems. Channel adapters are used for one-way integration (send or receive), asynchronous message high-performance processing framework, fixed thread asynchronous processing of messages, and support for batch processing of messages.\n\n![flow](docs/_media/flow1.jpg)\n## Features\n- Supports Kafka, MQTT, Redis, RabbitMQ, Pulsar message sources and sinks and supports expansion\n- Message source processing supports two processing methods: round-robin and random\n- Message processing supports extensible interceptors\n- Support SpringBoot2 and SpringBoot3\n\n## Requirements\nCompilation requires JDK 8 and above, Maven 3.2.5 and above.\n\n## Integrated\nIf you use Maven, you just need to add the following dependency in pom.xml\n\n### Spring Boot2 version\n```xml  \n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.wendy512\u003c/groupId\u003e\n    \u003cartifactId\u003estream-core\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.4\u003c/version\u003e\n\u003c/dependency\u003e\n``` \nAdd corresponding component dependencies according to your needs, example mqtt component\n```xml  \n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.wendy512\u003c/groupId\u003e\n    \u003cartifactId\u003estream-mqtt\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.4\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nSupports the following components\n- stream-mqtt\n- stream-kafka\n- stream-pulsar\n- stream-rabbitmq\n- stream-redis\n\n### Spring Boot3 version\nThe jdk version must be 17 or above\n```xml  \n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.wendy512\u003c/groupId\u003e\n    \u003cartifactId\u003estream-core-springboot3\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.4\u003c/version\u003e\n\u003c/dependency\u003e\n``` \n\nAdd corresponding component dependencies according to your needs, example mqtt component\n```xml  \n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.wendy512\u003c/groupId\u003e\n    \u003cartifactId\u003estream-mqtt-springboot3\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.4\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nSupports the following components\n- stream-mqtt-springboot3\n- stream-kafka-springboot3\n- stream-pulsar-springboot3\n- stream-rabbitmq-springboot3\n- stream-redis-springboot3\n\n## How to use\n\n[Reference Wiki](https://github.com/wendy512/stream/wiki)\n\n## Examples\n* [Local queue](https://github.com/wendy512/stream-samples/tree/master/local-sample)\n* [Kafka](https://github.com/wendy512/stream-samples/tree/master/kafka-sample)\n* [MQTT](https://github.com/wendy512/stream-samples/tree/master/mqtt-sample)\n* [RabbitMQ](https://github.com/wendy512/stream-samples/tree/master/rabbitmq-sample)\n* [Redis](https://github.com/wendy512/stream-samples/tree/master/redis-sample)\n* [Pulsar](https://github.com/wendy512/stream-samples/tree/master/pulsar-sample)\n\n## License\nStream is based on the [Apache License 2.0](./LICENSE) agreement, and Stream relies on some third-party components whose open source agreement is also Apache License 2.0.\n## Contact\n\n- Email：\u003cwendy512@yeah.net\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwendy512%2Fstream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwendy512%2Fstream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwendy512%2Fstream/lists"}