Louis Q
Louis Q

Reputation: 176

Quick RESTful services straight out of the database

I am investigating ways to quickly produce RESTful services without much coding.

I have looked into Google Feed Server already

Our data lives in PostgreSQL mostly.

Does anyone have any experience with any other good tools?

Thanks in advance

Upvotes: 3

Views: 153

Answers (2)

Olivier Liechti
Olivier Liechti

Reputation: 3188

If you want do it in Java, then Netbeans (in combination with JAX-RS and glassfish) is a pretty good solution. They have a wizard that generates RESTful end-points starting from a DB schema. They also have good tutorials for that on their web site.

Upvotes: 2

Carl Owens
Carl Owens

Reputation: 1292

A good solution to quickly build CRUD functionality over a RESTful API might be to use the following bundle for Symfony 2 (in PHP):

https://github.com/FriendsOfSymfony/FOSRestBundle

It will require some configuration and basic functionality using Doctrine, but should be relatively fast to build.

Upvotes: 1

Related Questions