# odata-example **Repository Path**: neo0820/odata-example ## Basic Information - **Project Name**: odata-example - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-11-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is an example project that demonstrates the different capabilities in the SDL OData framework. ## Starting the Service There are several ways to start the OData Service, in this demo we have made this even easier by adding a demo class. ### From Maven It is quite easy to run the example service from the command line, the example utilises Spring-Boot which allows running the service using a single packed jar. In order to run the example, in the cloned git repository execute the following maven command: ```bash mvn -f example-service/pom.xml spring-boot:run ``` ### From Your favorite IDE In order to execute the Example service in your IDE, please execute the following the Java Main method in class: ```java com.sdl.odata.example.service.ServiceContainer ``` ## Creating Example Content The example service by default has only one Person in the dataset "Darkwing Duck", in order to add more example content in the service the following steps can be used. This also demonstrates how the OData service allows data creation. In order to create some content the below sample content can be used to post data to the OData Service. Example command to create Mickey as a Person in the service, using a sample json file: ```bash curl -i -X POST -d @src/samples/mickey.json http://localhost:8080/example.svc/Persons --header "Content-Type:application/json" ``` The content structure that is posted looks as follows: ```json { "@odata.context" : "http://localhost:8080/example.svc/$metadata#/Persons/$entity", "@odata.id" : "/Persons(55)", "id" : 55, "firstName" : "Mickey", "lastName" : "Mouse", "age" : 83 } ``` We also have two more Persons (Donald and Scrooge), which you can post as following: ```bash curl -i -X POST -d @src/samples/donald.json http://localhost:8080/example.svc/Persons --header "Content-Type:application/json" ``` ```bash curl -i -X POST -d @src/samples/scrooge.json http://localhost:8080/example.svc/Persons --header "Content-Type:application/json" ```