{"id":15013730,"url":"https://github.com/alafty/quarkus-microservice","last_synced_at":"2026-01-29T00:02:21.891Z","repository":{"id":253633675,"uuid":"844066589","full_name":"alafty/Quarkus-Microservice","owner":"alafty","description":"This repo is a try-out project to test and compare the performance of QUARKUS and SPRING BOOT, and it is developed for educational purposes only.","archived":false,"fork":false,"pushed_at":"2024-08-18T14:40:53.000Z","size":100,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T07:53:38.452Z","etag":null,"topics":["java","quarkus","spring","springboot"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"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/alafty.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}},"created_at":"2024-08-18T09:23:49.000Z","updated_at":"2024-08-18T14:40:57.000Z","dependencies_parsed_at":"2024-09-24T20:02:37.871Z","dependency_job_id":null,"html_url":"https://github.com/alafty/Quarkus-Microservice","commit_stats":{"total_commits":17,"total_committers":7,"mean_commits":"2.4285714285714284","dds":0.7647058823529411,"last_synced_commit":"71cea57e788a8121f441f105d70fcd7248213827"},"previous_names":["alafty/quarkus-microservice"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alafty/Quarkus-Microservice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alafty%2FQuarkus-Microservice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alafty%2FQuarkus-Microservice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alafty%2FQuarkus-Microservice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alafty%2FQuarkus-Microservice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alafty","download_url":"https://codeload.github.com/alafty/Quarkus-Microservice/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alafty%2FQuarkus-Microservice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28856908,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T22:56:21.783Z","status":"ssl_error","status_checked_at":"2026-01-28T22:56:00.861Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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","quarkus","spring","springboot"],"created_at":"2024-09-24T19:44:43.501Z","updated_at":"2026-01-29T00:02:21.873Z","avatar_url":"https://github.com/alafty.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# code-with-quarkus\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## 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./mvnw compile quarkus:dev\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./mvnw package\n```\n\nIt produces the `quarkus-run.jar` file in the `target/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `target/quarkus-app/lib/` directory.\n\nThe application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.\n\nIf you want to build an _über-jar_, execute the following command:\n\n```shell script\n./mvnw package -Dquarkus.package.jar.type=uber-jar\n```\n\nThe application, packaged as an _über-jar_, is now runnable using `java -jar target/*-runner.jar`.\n\n## Creating a native executable\n\nYou can create a native executable using:\n\n```shell script\n./mvnw package -Dnative\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./mvnw package -Dnative -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./target/code-with-quarkus-1.0.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult \u003chttps://quarkus.io/guides/maven-tooling\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- REST Jackson ([guide](https://quarkus.io/guides/rest#json-serialisation)): Jackson serialization support for Quarkus REST. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it\n- Hibernate ORM with Panache ([guide](https://quarkus.io/guides/hibernate-orm-panache)): Simplify your persistence code for Hibernate ORM via the active record or the repository pattern\n- JDBC Driver - PostgreSQL ([guide](https://quarkus.io/guides/datasource)): Connect to the PostgreSQL database via JDBC\n\n## Provided Code\n\n### Hibernate ORM\n\nCreate your first JPA entity\n\n[Related guide section...](https://quarkus.io/guides/hibernate-orm)\n\n[Related Hibernate with Panache section...](https://quarkus.io/guides/hibernate-orm-panache)\n\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)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falafty%2Fquarkus-microservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falafty%2Fquarkus-microservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falafty%2Fquarkus-microservice/lists"}