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?
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.
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.
I think the best solution is REST4Enterprise also can take a look on and restSQL
I suggest using spring roo very easy to use
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With