Remove configserver again

This commit is contained in:
Dave Syer
2015-09-10 10:18:18 +01:00
parent 90eb11c688
commit df7c1fd418

View File

@@ -47,43 +47,6 @@ configure or extend to create a custom solution.
<span id="quick-start"></span>
## Quick Start
You can create a Config Server with a single annotation:
```groovy
@EnableConfigServer
class ConfigServer {
}
```
This app runs from the Spring Boot CLI (once the `spring-cloud-cli`
extensions are installed), e.g.
```
$ spring install org.springframework.cloud:spring-cloud-cli:1.0.3.RELEASE
$ spring run configserver.groovy -- --server.port=8888
```
Any other local application that includes `spring-cloud-config` as a
dependency will be able to contact this server and pre-initialize the
Spring `Environment` with external configuration managed by the
server. The Spring Boot CLI (with the Cloud extensions) will do this
automatically for all applications.
```groovy
@Controller
class ConfigClient {
}
```
Run this app with the Spring Boot CLI and then visit
http://localhost:8080/env (the `Environment` endpoint). Notice the
property sources that come from the config server at the top of the
results.
(N.B. does not work if you can't connect to
[github.com](https://github.com) because that's where the default
configuration repository lives.)
## Features
Spring Cloud focuses on providing good out of box experience for typical use cases and extensibility mechanism to cover others.