{"id":16099919,"url":"https://github.com/kurron/spring-cloud-sqs","last_synced_at":"2025-04-05T23:33:09.831Z","repository":{"id":145696991,"uuid":"115124838","full_name":"kurron/spring-cloud-sqs","owner":"kurron","description":"A simple example showcasing how Spring Cloud supports Amazon Simple Queue Service (SQS)","archived":false,"fork":false,"pushed_at":"2017-12-22T16:08:08.000Z","size":68,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-12T05:56:49.309Z","etag":null,"topics":["groovy","spring-cloud","sqs"],"latest_commit_sha":null,"homepage":null,"language":"Groovy","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/kurron.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":"2017-12-22T14:57:02.000Z","updated_at":"2017-12-22T15:13:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"d22ad69f-83c9-482e-bd3c-f58c9e341e31","html_url":"https://github.com/kurron/spring-cloud-sqs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kurron%2Fspring-cloud-sqs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kurron%2Fspring-cloud-sqs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kurron%2Fspring-cloud-sqs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kurron%2Fspring-cloud-sqs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kurron","download_url":"https://codeload.github.com/kurron/spring-cloud-sqs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247415793,"owners_count":20935383,"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","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":["groovy","spring-cloud","sqs"],"created_at":"2024-10-09T18:44:33.171Z","updated_at":"2025-04-05T23:33:09.800Z","avatar_url":"https://github.com/kurron.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\nThis project is a sample that helps to showcase how Spring supports [Amazon Simple Queue Service (SQS)](https://aws.amazon.com/sqs/).  Every second a simple payload is placed on the queue which a consumer should immediately process.  The consumer transforms the payload to uppercase and sending it on to a second queue.  That queue's consumer prints the payload, ending the sequence. \n\n# Guidebook\nDetails about this project are contained in the [guidebook](guidebook/guidebook.md) and should be considered mandatory reading prior to contributing to this project.\n\n# Prerequisites\n* [JDK 8](http://zulu.org/) installed and working\n* an SQS queue named `sqs-experiment` -- you can select another name but will have to edit the code\n* an SQS queue named `secondary-queue` -- you can select another name but will have to edit the code\n\n# Building\n`./gradlew` will pull down any dependencies, compile the source and package everything up.\n\n# Installation\nNothing to install.\n\n# Tips and Tricks\n## Starting The Server\nEdit `application.yml`, inserting your API keys.\n\n`./gradlew clean bootRun` will start the server on port `8080` and begin producing messages every second. You should see something similar to this:\n\n```\n2017-12-22 11:06:36.094  INFO 1154 --- [pool-2-thread-1] com.example.sqs.sqs.SqsApplication       : Producing message 108\n2017-12-22 11:06:36.412  INFO 1154 --- [nerContainer-15] com.example.sqs.sqs.SqsApplication       : Consuming 102 from sqs-experiment\n2017-12-22 11:06:36.412  INFO 1154 --- [nerContainer-15] com.example.sqs.sqs.SqsApplication       :     LogicalResourceId: sqs-experiment\n2017-12-22 11:06:36.602  INFO 1154 --- [nerContainer-10] com.example.sqs.sqs.SqsApplication       : Consuming 106 from secondary-queue\n2017-12-22 11:06:36.608  INFO 1154 --- [nerContainer-10] com.example.sqs.sqs.SqsApplication       :     LogicalResourceId: secondary-queue\n2017-12-22 11:06:36.832  INFO 1154 --- [nerContainer-15] com.example.sqs.sqs.SqsApplication       : Consuming 108 from sqs-experiment\n2017-12-22 11:06:36.832  INFO 1154 --- [nerContainer-15] com.example.sqs.sqs.SqsApplication       :     LogicalResourceId: sqs-experiment\n2017-12-22 11:06:37.094  INFO 1154 --- [pool-2-thread-1] com.example.sqs.sqs.SqsApplication       : Producing message 109\n2017-12-22 11:06:37.306  INFO 1154 --- [nerContainer-15] com.example.sqs.sqs.SqsApplication       : Consuming 103 from secondary-queue\n2017-12-22 11:06:37.306  INFO 1154 --- [nerContainer-14] com.example.sqs.sqs.SqsApplication       : Consuming 107 from secondary-queue\n2017-12-22 11:06:37.306  INFO 1154 --- [nerContainer-15] com.example.sqs.sqs.SqsApplication       :     LogicalResourceId: secondary-queue\n2017-12-22 11:06:37.306  INFO 1154 --- [nerContainer-14] com.example.sqs.sqs.SqsApplication       :     LogicalResourceId: secondary-queue\n2017-12-22 11:06:37.306  INFO 1154 --- [nerContainer-10] com.example.sqs.sqs.SqsApplication       : Consuming 105 from secondary-queue\n2017-12-22 11:06:37.306  INFO 1154 --- [nerContainer-10] com.example.sqs.sqs.SqsApplication       :     LogicalResourceId: secondary-queue\n2017-12-22 11:06:37.306  INFO 1154 --- [nerContainer-16] com.example.sqs.sqs.SqsApplication       : Consuming 104 from secondary-queue\n2017-12-22 11:06:37.306  INFO 1154 --- [nerContainer-16] com.example.sqs.sqs.SqsApplication       :     LogicalResourceId: secondary-queue\n2017-12-22 11:06:37.422  INFO 1154 --- [nerContainer-16] com.example.sqs.sqs.SqsApplication       : Consuming 102 from secondary-queue\n2017-12-22 11:06:37.422  INFO 1154 --- [nerContainer-16] com.example.sqs.sqs.SqsApplication       :     LogicalResourceId: secondary-queue\n```\n\n\n# Troubleshooting\n\n# Contributing\n\n# License and Credits\n* This project is licensed under the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/).\n* The guidebook structure was created by [Simon Brown](http://simonbrown.je/) as part of his work on the [C4 Architectural Model](https://c4model.com/).  His books can be [purchased from LeanPub](https://leanpub.com/b/software-architecture).\n* Patrick Kua offered [his thoughts on a travel guide to a software system](https://www.safaribooksonline.com/library/view/oreilly-software-architecture/9781491985274/video315451.html) which has been [captured in this template](travel-guide/travel-guide.md).\n\n# List of Changes\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkurron%2Fspring-cloud-sqs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkurron%2Fspring-cloud-sqs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkurron%2Fspring-cloud-sqs/lists"}