{"id":51003184,"url":"https://github.com/synthesized-io/jdbcrest","last_synced_at":"2026-06-20T17:04:21.315Z","repository":{"id":364348703,"uuid":"1159155967","full_name":"synthesized-io/jdbcrest","owner":"synthesized-io","description":"Java reimplementation of PostgREST","archived":false,"fork":false,"pushed_at":"2026-06-12T17:11:00.000Z","size":97,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-12T18:23:41.585Z","etag":null,"topics":["api","automatic-api","database","http","java","jdbc","rest","restful","server","sql"],"latest_commit_sha":null,"homepage":"","language":"Java","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/synthesized-io.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-16T11:40:46.000Z","updated_at":"2026-06-12T17:11:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/synthesized-io/jdbcrest","commit_stats":null,"previous_names":["synthesized-io/jdbcrest"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/synthesized-io/jdbcrest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synthesized-io%2Fjdbcrest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synthesized-io%2Fjdbcrest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synthesized-io%2Fjdbcrest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synthesized-io%2Fjdbcrest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/synthesized-io","download_url":"https://codeload.github.com/synthesized-io/jdbcrest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synthesized-io%2Fjdbcrest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34578138,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"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":["api","automatic-api","database","http","java","jdbc","rest","restful","server","sql"],"created_at":"2026-06-20T17:04:20.704Z","updated_at":"2026-06-20T17:04:21.310Z","avatar_url":"https://github.com/synthesized-io.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Maven Central](https://img.shields.io/maven-central/v/io.synthesized/jdbcrest-core)\r\n\r\n\r\n# JDBCRest\r\n\r\nJDBCRest is a Java library and a standalone server that turns your JDBC-accessible database directly into a RESTful API. The structural constraints and permissions in the database determine the API endpoints and operations. This project is heavily inspired by [PostgREST](https://postgrest.org).\r\n\r\nConceptually, JDBCRest is:\r\n- **[PostgREST](https://postgrest.org) reimplemented in Java**\r\n- Generalized from **PostgreSQL-only** to **JDBC-backed databases**\r\n\r\n## Comparison with PostgREST\r\n\r\nJDBCRest aims to be compatible with PostgREST's API surface while extending its capabilities to any database with a JDBC driver.\r\n\r\nTo ensure behavioral parity, the project includes a suite of **comparison tests** that run against both PostgREST and JDBCRest. These tests use PostgREST as the behavioral reference, executing the same operations against multiple backends and implementations to verify consistency.\r\n\r\n## Documentation\r\n\r\nSee [product documentation](docs/index.adoc).\r\n\r\n## Requirements\r\n\r\n- Java 17 or higher\r\n\r\n## Quick Start\r\n\r\n### Build\r\n\r\n```shell\r\nmvn clean install -DskipTests\r\n```\r\n\r\n### Run standalone server\r\n\r\nJDBCRest can be run as a standalone server. You can configure it using Spring Boot properties.\r\n\r\n```shell\r\njava -Dspring.datasource.url=jdbc:postgresql://localhost:5432/mydb \\\r\n     -Dspring.datasource.username=myuser \\\r\n     -Dspring.datasource.password=mypass \\\r\n     -Dspring.datasource.driver-class-name=org.postgresql.Driver \\\r\n     -Djdbcrest.database-type=JOOQ_POSTGRES \\\r\n     -jar cli/target/jbdcrest-cli.jar\r\n```\r\n\r\n### Usage as a Library\r\n\r\nAdd the following dependency to your `pom.xml`:\r\n\r\n```xml\r\n\u003cdependency\u003e\r\n  \u003cgroupId\u003eio.synthesized\u003c/groupId\u003e\r\n  \u003cartifactId\u003ejdbcrest-core\u003c/artifactId\u003e\r\n  \u003cversion\u003e1.0.0-SNAPSHOT\u003c/version\u003e\r\n\u003c/dependency\u003e\r\n```\r\n\r\n## jOOQ Dependency Policy\r\n\r\nBy default, this open-source project relies on the open-source version of jOOQ. However, if your organization uses jOOQ Pro, you can benefit from support for additional database types, such as SAP HANA.\r\n\r\nThe jOOQ dependency in the `core` module is marked as **optional**. This allows you to exclude the default jOOQ dependency and provide your own version (e.g., jOOQ Pro) in your project's `pom.xml`.\r\n\r\nIf you want to develop or test jOOQ Pro specific features in this library, use the `jooq-pro` Maven profile:\r\n\r\n```shell\r\nmvn clean install -Pjooq-pro\r\n```\r\n\r\n## Publishing a new version to Maven Central\r\n\r\n```shell\r\nmvn -Ppublish-central clean deploy\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynthesized-io%2Fjdbcrest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsynthesized-io%2Fjdbcrest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynthesized-io%2Fjdbcrest/lists"}