Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Solution for easy generating rest services?

We have a application which works with MySql database. Now we are implementing mobile version of our application and I'm looking for java solution for easy generating rest services from already ready sql queries.

Details on security and performance: Security is required (LDAP). Performance - working time of rest request should be approximately equals working time of sql request.

What solutions can be used for it?

like image 711
eugene.polschikov Avatar asked Feb 28 '13 14:02

eugene.polschikov


People also ask

What makes REST services to be easily scalable?

The server end of REST is stateless, which means that the server doesn't have to store anything across requests. This means that there doesn't have to be (much) communication between servers, making it horizontally scalable.

What is your approach while creating a REST service?

Whenever you develop a service, such as a REST API or a SOAP API, there are two approaches you could choose from: Code First, and generate the contract out of the code. Contract First, and develop the code based on the contract.


2 Answers

I think the best solution is REST4Enterprise also can take a look on and restSQL

like image 143
alexander.antsypov Avatar answered Oct 13 '22 18:10

alexander.antsypov


I suggest using spring roo very easy to use

like image 32
Moshe Shamy Avatar answered Oct 13 '22 17:10

Moshe Shamy