Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for a good tutorial how to develop odata service in Java (with restlet, jersey, or odata4j) [closed]

I am looking for a tutorial that shows step by step how to develop an odata service using Java.

like image 311
Skarab Avatar asked Jun 14 '11 13:06

Skarab


2 Answers

The odata4j docs about deploying a service in Tomcat look decent: http://code.google.com/p/odata4j/wiki/Tomcat

Also see answers to a similar question: How do I interact with OData from Java?. That question covers odata clients in Java, but several of the links are relevant.

like image 66
jtoberon Avatar answered Sep 28 '22 13:09

jtoberon


If you want to get an idea of how to access and work with Odata from a client side you could try taking a look at this tutorial:

http://weblogs.asp.net/uruit/archive/2011/09/13/accessing-odata-from-android-using-restlet.aspx.

It shows how to take an existing WCF service and auto generate the following class files for you to use within your applications. However, this example is specifically for Android and uses the Restlet library, but hopefully this can give you an idea as to how to access / use it.

like image 42
cking24343 Avatar answered Sep 28 '22 15:09

cking24343