From 3198b47f81cdf930c6298981065ecce091e72b84 Mon Sep 17 00:00:00 2001 From: David Morley Date: Wed, 16 Mar 2016 05:26:37 -0500 Subject: [PATCH] Add README for Spring Data REST --- spring-data-rest/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 spring-data-rest/README.md diff --git a/spring-data-rest/README.md b/spring-data-rest/README.md new file mode 100644 index 0000000000..c9849bd770 --- /dev/null +++ b/spring-data-rest/README.md @@ -0,0 +1,11 @@ +# About this project +This project contains examples from the [Introduction to Spring Data REST](http://www.baeldung.com/spring-data-rest-intro) article from Baeldung. + +# Running the project +The application uses Spring Boot, so it is easy to run. You can start it any of a few ways: +* Run the `main` method from `SpringDataRestApplication` +* Use the Maven Spring Boot plugin: `mvn spring-boot:run` +* Package the application as a JAR and run it using `java -jar intro-spring-data-rest.jar` + +# Viewing the running application +To view the running application, visit [http://localhost:8080](http://localhost:8080) in your browser