{"id":13694617,"url":"https://github.com/hantsy/quarkus-sandbox","last_synced_at":"2025-04-10T16:41:44.207Z","repository":{"id":37970805,"uuid":"206832213","full_name":"hantsy/quarkus-sandbox","owner":"hantsy","description":"Quarkus playground","archived":false,"fork":false,"pushed_at":"2024-05-17T07:28:27.000Z","size":4095,"stargazers_count":72,"open_issues_count":0,"forks_count":27,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-05-17T08:28:34.360Z","etag":null,"topics":["cdi","docker","graalvm","graphql","hibernate","jax-rs","jpa","kotlin","kubernetes","microprofile","quarkus","reactive-programming","resteasy","vertx"],"latest_commit_sha":null,"homepage":"https://hantsy.github.io/quarkus-sandbox/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hantsy.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":"2019-09-06T16:20:33.000Z","updated_at":"2024-05-17T08:28:36.304Z","dependencies_parsed_at":"2024-05-17T08:38:47.473Z","dependency_job_id":null,"html_url":"https://github.com/hantsy/quarkus-sandbox","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/hantsy%2Fquarkus-sandbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hantsy%2Fquarkus-sandbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hantsy%2Fquarkus-sandbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hantsy%2Fquarkus-sandbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hantsy","download_url":"https://codeload.github.com/hantsy/quarkus-sandbox/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248252728,"owners_count":21072703,"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":["cdi","docker","graalvm","graphql","hibernate","jax-rs","jpa","kotlin","kubernetes","microprofile","quarkus","reactive-programming","resteasy","vertx"],"created_at":"2024-08-02T17:01:35.810Z","updated_at":"2025-04-10T16:41:44.183Z","avatar_url":"https://github.com/hantsy.png","language":"HTML","funding_links":[],"categories":["Java"],"sub_categories":[],"readme":"# Quarkus Sandbox\n\nA  personal sandbox project  to experience the new features of the [Quarkus framework](https://www.quarkus.io).\n\n## Docs\n\n* [Kickstart your first Quarkus application](./docs/01-start.md)\n* [Building a Spring web application with Quarkus](./docs/02-spring.md)\n* [Interacting with REST APIs ](./docs/restclient.md)\n* [Building reactive APIs with Quarkus](./docs/reactive.md)\n* [Building GraphQL APIs with Quarkus](./docs/graphql.md)\n* [Consuming GraphQL APIs with Quarkus](./docs/graphql-client.md)\n\n## Sample Codes\n\n| Name | Description |\n|:-------------------|--------------------------------------------------|\n|[resteasy-classic](https://github.com/hantsy/quarkus-sample/tree/master/resteasy-classic) |Simple CURD RESTful APIs using tranditional Resteasy, Hibernate/JPA|\n|[resteasy-reactive-pgclient](https://github.com/hantsy/quarkus-sample/tree/master/resteasy-reactive-pgclient)  |Resteasy Reactive and Reactive Postgre client|\n|[resteasy-reactive](https://github.com/hantsy/quarkus-sample/tree/master/resteasy-reactive) |Resteasy Reactive, Hibernate Reactive Repository, Smallrye Mutiny example.|\n|[resteasy-kotlin-co](https://github.com/hantsy/quarkus-sample/tree/master/resteasy-kotlin-co) |Resteasy Reactive/Kotlin Coroutines, Hibernate Reactive Repository, Smallrye Mutiny example.|\n|[resteasy-reactive-hibernate](https://github.com/hantsy/quarkus-sample/tree/master/resteasy-reactive-hibernate) |Resteasy Reactive, Hibernate Reactive Session API, Smallrye Mutiny example.|\n|[vertx-routes](https://github.com/hantsy/quarkus-sample/tree/master/vertx-routes)  |Simple CRUD RESTful APIs using Vertx `Router` and Reactive PgClient with Mutiny APIs.|\n|[spring](https://github.com/hantsy/quarkus-sample/tree/master/spring) |CRUD RESTful APIs using Spring DI, Spring Data JPA, Spring WebMvc|\n|[multipart](https://github.com/hantsy/quarkus-sample/tree/master/multipart)  |Multipart examples|\n|[amqp](https://github.com/hantsy/quarkus-sample/tree/master/amqp)  |Reactive Messaging with AMQP connector and JAXRS SSE examples|\n|[GraphQL](https://github.com/hantsy/quarkus-sample/tree/master/graphql)  |GraphQL example using MP GraphQL/Smallrye GraphQL|\n|[GraphQL Client](https://github.com/hantsy/quarkus-sample/tree/master/graphql-client)  |GraphQL Client example using MP GraphQL/Smallrye GraphQL|\n|[mongodb-kotlin](https://github.com/hantsy/quarkus-sample/tree/master/mongodb-kotlin) |MongoDb/Resteasy/Kotlin/Mockk example|\n|[mongodb-kotlin-co](https://github.com/hantsy/quarkus-sample/tree/master/mongodb-kotlin-co) |MongoDb Reactive/Resteasy Reactive/Kotlin Coroutines example|\n|[restclient-classic](https://github.com/hantsy/quarkus-sample/tree/master/restclient-classic)|Rest Client Classic Example|\n|[restclient-mutiny](https://github.com/hantsy/quarkus-sample/tree/master/restclient-mutiny)|Rest Client Classic with Mutiny Example|\n|[restclient-reactive](https://github.com/hantsy/quarkus-sample/tree/master/restclient-reactive)|Rest Client Reactive Example|\n|[restclient-kotlin](https://github.com/hantsy/quarkus-sample/tree/master/restclient-kotlin) |Rest Client using MP RestClient spec, but written in Kotlin|\n|[restclient-kotlin-co](https://github.com/hantsy/quarkus-sample/tree/master/restclient-kotlin-co) |Rest Client Reactive/Kotlin Coroutines|\n|[restclient-jaxrs](https://github.com/hantsy/quarkus-sample/tree/master/restclient-jaxrs)| Rest Client using classic Jaxrs Client API|\n|[restclient-java11](https://github.com/hantsy/quarkus-sample/tree/master/restclient-java11) |Rest Client using Java 11 HttpClient API|\n|[restclient-vertx](https://github.com/hantsy/quarkus-sample/tree/master/restclient-vertx) |Rest Client using Vertx Mutiny WebClient API|\n\nThe following examples used Java 8 or RxJava 2 based Reactive Postgres Client which is depreacted and not available in the latest Qukarus. \n\n| Name | Description |\n|:-------------------|--------------------------------------------------|\n|[java8](https://github.com/hantsy/quarkus-sample/tree/master/legacy/java8)  |Simple CRUD RESTful APIs but using Java 8 `CompletionStage` and Reactive Postgre Client|\n|[rxjava2](https://github.com/hantsy/quarkus-sample/tree/master/legacy/rxjava2) |CRUD RESTful APIs using RxJava 2 and Reactive Postgre client|\n|[vertx-routes](https://github.com/hantsy/quarkus-sample/tree/master/legacy/vertx-routes)  |Simple CRUD RESTful APIs using Vertx `Router` .|\n|[java8-hibernate-reactive](https://github.com/hantsy/quarkus-sample/tree/master/legacy/java8-hibernate-reactive) |Java 8 CompletablFuture, Hibernate Reactive Example.|\n\n## References\n\n* [Quarkus Workshop](https://quarkus.io/quarkus-workshops/super-heros/)\n* [Quarkus beginners guide](https://jaxlondon.com/quarkus-beginners-guide-cheat-sheet) by Jaxcenter\n* [DZone Refcard : Quarkus](https://dzone.com/refcardz/quarkus-1?chapter=1)\n* [Configuring a Quarkus application](https://dzone.com/articles/configuring-a-quarkus-application?fromrel=true)\n* [Thoughts on Quarkus](https://dzone.com/articles/thoughts-on-quarkus)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhantsy%2Fquarkus-sandbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhantsy%2Fquarkus-sandbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhantsy%2Fquarkus-sandbox/lists"}