开发者

Java equivalent to WCF Data Services

开发者 https://www.devze.com 2023-01-14 20:58 出处:网络
Is there anything in Ja开发者_StackOverflow社区va 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 ?

Is there anything in Ja开发者_StackOverflow社区va 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.

0

精彩评论

暂无评论...
验证码 换一张
取 消