From 0760a4ad8700acfe2aa7e20055b591f68e16866e Mon Sep 17 00:00:00 2001 From: Eberhard Wolff Date: Wed, 2 Oct 2013 16:44:28 +0200 Subject: [PATCH] Added Spring Boot Guides from spring.io --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 3c69971eeb..d33f7913c3 100644 --- a/README.md +++ b/README.md @@ -344,3 +344,14 @@ Example show how Spring Boot can be mixed with traditional XML configuration (we generally recommend using Java `@Configuration` whenever possible) +## Guides + +The [spring.io](http://spring.io/) site contains several guides that show how to use Spring Boot step-by-step: +* [Building an Application with Spring +Boot](http://spring.io/guides/gs/spring-boot/) is a very basic guide +that shows you how to create a simple application, run it and add some +management services. +* [Building a RESTful Web Service with Spring Boot Actuator](http://spring.io/guides/gs/actuator-service/) +is a guide to creating a REST web service and also shows how the server can be configured. +* [Converting a Spring Boot JAR Application to a WAR](http://spring.io/guides/gs/convert-jar-to-war/) shows you how to run applications in a +web server as a WAR file.