{"id":48680722,"url":"https://github.com/mpilone/hazelcastmq","last_synced_at":"2026-04-26T20:00:42.829Z","repository":{"id":6540545,"uuid":"7781939","full_name":"mpilone/hazelcastmq","owner":"mpilone","description":"Messaging, STOMP server, Camel component, and JMS provider for Hazelcast","archived":false,"fork":false,"pushed_at":"2020-01-04T22:30:22.000Z","size":709,"stargazers_count":81,"open_issues_count":5,"forks_count":16,"subscribers_count":10,"default_branch":"master","last_synced_at":"2023-04-07T08:10:40.651Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/mpilone.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-01-23T19:28:55.000Z","updated_at":"2022-11-16T21:25:34.000Z","dependencies_parsed_at":"2022-09-01T05:02:03.074Z","dependency_job_id":null,"html_url":"https://github.com/mpilone/hazelcastmq","commit_stats":null,"previous_names":[],"tags_count":4,"template":null,"template_full_name":null,"purl":"pkg:github/mpilone/hazelcastmq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpilone%2Fhazelcastmq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpilone%2Fhazelcastmq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpilone%2Fhazelcastmq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpilone%2Fhazelcastmq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mpilone","download_url":"https://codeload.github.com/mpilone/hazelcastmq/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpilone%2Fhazelcastmq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32310804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T19:15:34.056Z","status":"ssl_error","status_checked_at":"2026-04-26T19:15:15.467Z","response_time":129,"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":[],"created_at":"2026-04-11T01:00:36.059Z","updated_at":"2026-04-26T20:00:42.824Z","avatar_url":"https://github.com/mpilone.png","language":"Java","funding_links":[],"categories":["进程间通信"],"sub_categories":["Spring Cloud框架"],"readme":"# HazelcastMQ\n\nHazelcastMQ provides a simple messaging layer on top of the basic Queue and Topic data \nstructures provided by [Hazelcast](http://www.hazelcast.com/), an in-memory \ndata grid. HazelcastMQ emphasizes simple configuration and reliable clustering \nwhile providing an understandable and flexible messaging API. HazelcastMQ builds\non the core features of Hazelcast such as scalability and resilience while\nmaintaining a small footprint and few dependencies. HazelcastMQ can be easily\nembedded in a single JVM or clustered across a huge number of nodes.\n\nHazelcastMQ is divided into multiple components that can be used independently \ndepending on your integration needs:\n\n![Hazelcast Components](/docs/HazelcastMQComponents.png?raw=true \"Hazelcast Components\")\n\n* [hazelcastmq-core](hazelcastmq-core/README.md): The core MQ library that \nprovides a JMS 2.0-like API for sending and receiving messages.\n* [hazelcastmq-camel](hazelcastmq-camel/README.md): An \n[Apache Camel](http://camel.apache.org/) component implementation for \nHazelcastMQ supporting Camel's integration framework and Enterprise Integration \nPatterns (EIP).\n* [hazelcastmq-jms](hazelcastmq-jms/README.md): A JMS 1.1 implementation which \nlayers on top of HazelcastMQ Core.\n* [hazelcastmq-stomp](hazelcastmq-stomp/README.md): A [STOMP](http://stomp.github.com) \nserver which maps all SEND and SUBSCRIBE commands to HazelcastMQ Core\nproducers and consumers.\n* [hazelcastmq-spring](hazelcastmq-spring/README.md): Provides integrations with \nthe [Spring Framework](http://projects.spring.io/spring-framework/) such as \ntransaction management and synchronization.\n* [yeti](yeti/README.md): A [STOMP](http://stomp.github.com) server and client framework built \non [Netty](http://netty.io/) to make it simple to build STOMP implementations for \nexisting brokers.\n\n## Examples\n\nRefer to each module for code examples or browse through the \n[hazelcastmq-examples](hazelcastmq-examples/src/main/java/org/mpilone/hazelcastmq/example) \nmodule. \n\n## Getting Builds\n\nThe source, javadoc, and binaries are available in the \n[mpilone/mvn-repo](https://github.com/mpilone/mvn-repo) GitHub repository. You\ncan configure Maven or Ivy to directly grab the dependencies by adding the repository:\n\n    \u003crepositories\u003e\n         \u003crepository\u003e\n             \u003cid\u003empilone-snapshots\u003c/id\u003e\n             \u003curl\u003ehttps://github.com/mpilone/mvn-repo/raw/master/snapshots\u003c/url\u003e\n         \u003c/repository\u003e\n         \u003crepository\u003e\n             \u003cid\u003empilone-releases\u003c/id\u003e\n             \u003curl\u003ehttps://github.com/mpilone/mvn-repo/raw/master/releases\u003c/url\u003e\n         \u003c/repository\u003e\n     \u003c/repositories\u003e\n\nAnd then adding the dependency:\n\n    \u003cdependency\u003e\n        \u003cgroupId\u003eorg.mpilone.hazelcastmq\u003c/groupId\u003e\n        \u003cartifactId\u003ehazelcastmq-core\u003c/artifactId\u003e\n        \u003cversion\u003eX.X.X\u003c/version\u003e\n    \u003c/dependency\u003e\n\n## Background\n\nRefer to my [initial blog post](http://mikepilone.blogspot.com/2013/01/hazelcast-jms-provider.html).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpilone%2Fhazelcastmq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmpilone%2Fhazelcastmq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpilone%2Fhazelcastmq/lists"}