{"id":25515356,"url":"https://github.com/duquejo/quarkus-tokencache-microservice","last_synced_at":"2026-05-03T15:35:13.493Z","repository":{"id":278113411,"uuid":"934562022","full_name":"duquejo/Quarkus-TokenCache-Microservice","owner":"duquejo","description":"Resilient-ready external token cacheable service Proof of concept","archived":false,"fork":false,"pushed_at":"2025-02-20T05:20:00.000Z","size":359,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-04T01:41:30.457Z","etag":null,"topics":["java","openapi","quarkus","redis"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/duquejo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-02-18T03:23:28.000Z","updated_at":"2025-02-20T05:22:07.000Z","dependencies_parsed_at":"2025-07-04T22:35:26.314Z","dependency_job_id":"95a06dd1-526f-4534-b6b2-604b2efbea09","html_url":"https://github.com/duquejo/Quarkus-TokenCache-Microservice","commit_stats":null,"previous_names":["duquejo/quarkus-tokencache-microservice"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/duquejo/Quarkus-TokenCache-Microservice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duquejo%2FQuarkus-TokenCache-Microservice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duquejo%2FQuarkus-TokenCache-Microservice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duquejo%2FQuarkus-TokenCache-Microservice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duquejo%2FQuarkus-TokenCache-Microservice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/duquejo","download_url":"https://codeload.github.com/duquejo/Quarkus-TokenCache-Microservice/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duquejo%2FQuarkus-TokenCache-Microservice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32575112,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["java","openapi","quarkus","redis"],"created_at":"2025-02-19T13:29:43.451Z","updated_at":"2026-05-03T15:35:13.469Z","avatar_url":"https://github.com/duquejo.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Token-Cache Strategy POC\n\nThis project uses Quarkus, the Supersonic Subatomic Java Framework.\n\nIf you want to learn more about Quarkus, please visit its website: \u003chttps://quarkus.io/\u003e.\n\n## General Architecture Schema\n\n\u003cimg src=\"architecture.png\" title=\"Hexagonal Architecture\"/\u003e\n\n## Technologies\n\n- Quarkus Framework\n- Quarkus REST\n- Java 21\n- Gradle 8.5\n- Quarkus Redis Client\n- Quarkus Smallrye Fault Tolerance (Resiliency strategies)\n- Rest Assured (Integration tests)\n- Quarkus Jacoco\n- Quarkus JUnit5\n- Quarkus Mockito\n- Quarkus Smallye OpenAPI\n- Spotless\n- PMD\n\n## Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n\n```shell script\n./gradlew quarkusDev\n```\n\n\u003e **_NOTE:_**  Quarkus now ships with a Dev UI, which is available in dev mode only at \u003chttp://localhost:8080/q/dev/\u003e.\n\n## Packaging and running the application\n\nThe application can be packaged using:\n\n```shell script\n./gradlew build\n```\n\nIt produces the `quarkus-run.jar` file in the `build/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `build/quarkus-app/lib/` directory.\n\nThe application is now runnable using `java -jar build/quarkus-app/quarkus-run.jar`.\n\nIf you want to build an _über-jar_, execute the following command:\n\n```shell script\n./gradlew build -Dquarkus.package.jar.type=uber-jar\n```\n\nThe application, packaged as an _über-jar_, is now runnable using `java -jar build/*-runner.jar`.\n\n## Creating a native executable\n\nYou can create a native executable using:\n\n```shell script\n./gradlew build -Dquarkus.native.enabled=true\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using:\n\n```shell script\n./gradlew build -Dquarkus.native.enabled=true -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./build/token-cache-1.0.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult \u003chttps://quarkus.io/guides/gradle-tooling\u003e.\n\n## Quarkus graphic bundling schema\n\u003cimg alt=\"img.png\" src=\"img.png\" width=\"300\" /\u003e\n\n## Related Guides\n\n- REST ([guide](https://quarkus.io/guides/rest)): A Jakarta REST implementation utilizing build time processing and Vert.x. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it.\n\n## Provided Code\n\n### REST\n\nEasily start your REST Web Services\n\n[Related guide section...](https://quarkus.io/guides/getting-started-reactive#reactive-jax-rs-resources)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduquejo%2Fquarkus-tokencache-microservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fduquejo%2Fquarkus-tokencache-microservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduquejo%2Fquarkus-tokencache-microservice/lists"}