How do I go about designing a java solution which can convert postgres table schema and operations to rest endpoints ? I'm aware that there's postgrest framework, but that's not a maven library that can be incorporated into the code.I have postgres schema for several tables, I want to make rest api endpoints to do CRUD operations on these tables. How to generically go about making these ?
↧