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 java code.I have postgres schema for several tables, I want to make generic rest api endpoints to do CRUD operations on these tables. How to generically go about making these ?/v1/api/{table_name}
and allow GET, POST, PUT & DELETE
operations on it. Any other better way to do it ?
↧
Design java generic rest APIs to access postgres table CRUD operations [closed]
↧