{"id":22147710,"url":"https://github.com/testinggospels/jms-service","last_synced_at":"2025-10-15T19:08:53.495Z","repository":{"id":53196595,"uuid":"349936737","full_name":"testinggospels/jms-service","owner":"testinggospels","description":"JMS Service is a utility for testing JMS based backends by simply using HTTP Endpoints. Currently supported backends are Kafka and RabbitMQ","archived":false,"fork":false,"pushed_at":"2023-02-24T01:16:44.000Z","size":165,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-02T19:42:45.063Z","etag":null,"topics":["functional-testing","kafka","kafka-producer","kafka-testing","performance-testing","spring-boot","spring-kafka","spring-kafka-test"],"latest_commit_sha":null,"homepage":"https://github.com/testinggospels/jms-service/wiki","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/testinggospels.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}},"created_at":"2021-03-21T08:12:21.000Z","updated_at":"2023-02-24T01:16:42.000Z","dependencies_parsed_at":"2022-09-15T01:58:04.177Z","dependency_job_id":null,"html_url":"https://github.com/testinggospels/jms-service","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/testinggospels/jms-service","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fjms-service","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fjms-service/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fjms-service/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fjms-service/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/testinggospels","download_url":"https://codeload.github.com/testinggospels/jms-service/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fjms-service/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279104244,"owners_count":26104468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-15T02:00:07.814Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["functional-testing","kafka","kafka-producer","kafka-testing","performance-testing","spring-boot","spring-kafka","spring-kafka-test"],"created_at":"2024-12-01T23:20:13.567Z","updated_at":"2025-10-15T19:08:53.463Z","avatar_url":"https://github.com/testinggospels.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kafka-service\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n[Spring Boot](http://projects.spring.io/spring-boot/) Application for your Kafka testing needs.\n\n## Requirements\n\nFor building and running the application you need:\n\n- [JDK 11](https://www.oracle.com/java/technologies/javase-jdk11-downloads.html)\n- [Maven 3](https://maven.apache.org)\n\n## Documentation\n\nhttps://github.com/fauxauldrich/kafka-service/wiki\n\n## Running the application locally\n\n**Run as a Docker container**\n\nFastest way to get started is by using the image available on [Docker Hub](https://hub.docker.com/r/shubhendumadhukar/kafka-service):\n\n- Use the `docker-compose.yml` to bring up your container. (Modify `docker-compose.yml` to reflect the dir path for your truststore files under volumes and update environment variables accordingly)\n- Or alternatively, to build image locally use Dockerfile provided.\n  - Build with : `docker build -t kafka-service:${VERSION} .`\n  - Run as a container using:\n  ````shell\n   docker run -d -env spring.kafka.bootstrap-servers=127.0.0.1:9092 -env kafkaservice.truststore.location=/app/certs/truststore.jks -env kafkaservice.truststore.password=Password@123 --name kafka-service -p 8080:8080 -v /dir/containing/truststore.jks/files:/app/certs kafka-service:${VERSION}```\n  ````\n\n**Run from your IDE**\n\n- Execute the `main` method in the `com.fauxauldrich.kafkaservice.KafkaServiceApplication` class from your IDE.\n- Or you can use the [Spring Boot Maven plugin](https://docs.spring.io/spring-boot/docs/current/reference/html/build-tool-plugins-maven-plugin.html) like so:\n  ```shell\n  mvn spring-boot:run\n  ```\n\n**Run as a JAR**\n\n- You can also download the JAR file from [Releases](https://github.com/fauxauldrich/kafka-service/releases) and run it locally:\n  ```shell\n  java -Dspring.kafka.bootstrap-servers=127.0.0.1:9092 -Dkafkaservice.truststore.location=/home/truststore.jks -Dkafkaservice.truststore.password=Password -jar kafka-service-${VERSION}-java11.jar\n  ```\n- Or, you can build locally and run the jar file\n\n  ```shell\n  ./mvnw clean install package -f pom.xml\n\n  java -Dspring.kafka.bootstrap-servers=127.0.0.1:9092 -Dkafkaservice.truststore.location=/home/truststore.jks -Dkafkaservice.truststore.password=Password -jar target/kafka-service-${VERSION}-java11.jar\n  ```\n\n## Copyright\n\nReleased under the MIT License. See the [LICENSE](https://github.com/fauxauldrich/kafka-service/blob/main/LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestinggospels%2Fjms-service","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftestinggospels%2Fjms-service","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestinggospels%2Fjms-service/lists"}