Is there anything in Java that's the equivalent of WCF Data Services ?
Does Spring have the capabilities to expose databases as a RESTful web service like WCF Data Services ?
Thanks !
Is there anything in Java that's the equivalent of WCF Data Services ?
Does Spring have the capabilities to expose databases as a RESTful web service like WCF Data Services ?
Thanks !
These are two separate capabilities - database access and REST web services - but Spring indeed has both.
You can access databases in Spring using JDBC, Hibernate, TopLink, or iBatis.
You can expose web services as SOAP using Spring web services or RESTful web services using Spring 3.x.
You can put the two together to achieve your stated goal.
There is sqlREST but I can't vouch for its stability. Check this article as well.