From c251e33bf8ba2e3b15de7d8a07008a764ad49969 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 4 Feb 2014 23:02:04 -0600 Subject: [PATCH] Document that applicaiton.yml requires snakeyaml Update documentation to reference the need for a yaml library to be on the classpath. Fixes gh-313 --- spring-boot-actuator/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-boot-actuator/README.md b/spring-boot-actuator/README.md index 2a83c9d9d1..570fa99ded 100644 --- a/spring-boot-actuator/README.md +++ b/spring-boot-actuator/README.md @@ -160,8 +160,9 @@ on a class and run it. Spring Boot likes you to externalize your configuration so you can work with the same application code in different environments. To get started with this you create a file in the root of your classpath -(`src/main/resources` if using Maven) - if you like YAML you can call -it `application.yml`, e.g.: +(`src/main/resources` if using Maven) - if you like YAML, you can include +`org.yaml:snakeyaml` on your runtime class path, and call the file `application.yml`, +e.g.: server: port: 9000