Use log level config in application.yml

This commit is contained in:
Dave Syer
2014-06-27 17:00:32 +01:00
parent 841815abcc
commit 09fd8d5880
3 changed files with 16 additions and 7 deletions

11
sample.groovy Normal file
View File

@@ -0,0 +1,11 @@
package demo
@Grab('org.springframework.platform:spring-platform-config-client:1.0.0.BUILD-SNAPSHOT')
@Grab('spring-boot-starter-actuator')
@RestController
class Application {
@RequestMapping("/")
String home() {
"Hello World"
}
}