Commit 6236d2df by Johannes Stelzer
parent d443b6e3
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
<module>spring-boot-admin-server</module> <module>spring-boot-admin-server</module>
<module>spring-boot-admin-server-ui</module> <module>spring-boot-admin-server-ui</module>
<module>spring-boot-admin-samples</module> <module>spring-boot-admin-samples</module>
<module>spring-boot-starter-admin-client</module> <module>spring-boot-admin-starter-client</module>
</modules> </modules>
<organization> <organization>
...@@ -208,7 +208,7 @@ ...@@ -208,7 +208,7 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>spring-boot-starter-admin-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
......
...@@ -2,7 +2,8 @@ info: ...@@ -2,7 +2,8 @@ info:
version: @pom.version@ version: @pom.version@
stage: test stage: test
logging:
file: boot-admin-sample.log
spring: spring:
application: application:
......
...@@ -31,7 +31,7 @@ public class Application { ...@@ -31,7 +31,7 @@ public class Application {
``` ```
## Spring Cloud DiscoveryClient support ## Spring Cloud DiscoveryClient support
The Spring Boot Admin Server is capable of using Spring Clouds DiscoveryClient to discover applications. When you do this the clients don't have to include the spring-boot-starter-admin-client. You just have to configure a DiscoveryClient - everything else is done by AutoConfiguration. The Spring Boot Admin Server is capable of using Spring Clouds DiscoveryClient to discover applications. When you do this the clients don't have to include the spring-boot-admin-starter-client. You just have to configure a DiscoveryClient - everything else is done by AutoConfiguration.
See the [discovery sample project](https://github.com/codecentric/spring-boot-admin/tree/master/spring-boot-admin-samples/spring-boot-admin-sample-discovery) in this repository. See the [discovery sample project](https://github.com/codecentric/spring-boot-admin/tree/master/spring-boot-admin-samples/spring-boot-admin-sample-discovery) in this repository.
One note: If you omit the Spring Boot Admin Client in you Client Applications you can't download the logfile (but hopefully my pull request will make it into Spring Boot 1.3.0); One note: If you omit the Spring Boot Admin Client in you Client Applications you can't download the logfile (but hopefully my pull request will make it into Spring Boot 1.3.0);
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>de.codecentric</groupId> <groupId>de.codecentric</groupId>
<artifactId>spring-boot-starter-admin-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<version>1.1.3-SNAPSHOT</version> <version>1.1.3-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>
<artifactId>spring-boot-starter-admin-client</artifactId> <artifactId>spring-boot-admin-starter-client</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment