Closed ghost closed 7 years ago
Works for me. Please note that SBA Server 1.4.x is not compatible with Boot 1.5. Please switch to Boot 1.4.4. SBA 1.4.5 will be out in hopefully out end Feb.
I know this is closed, but I'm attempting to use 1.4.5 (and 1.4.6) with Boot 1.5.2 and getting this same error. Similar setup as above, but I'm using Consul so I've added @EnableDiscoverClient too. I've also got the Consul Discovery dependencies.
Any thoughts?
Edit: I'm also trying to use Dalston.RC1 for our cloud dependencies.
@aschneid75 then you could try our 1.5.0-SNAPSHOT
Thanks. I'll wait for 1.50 release. Seems like 1.4.6 isn't having any problems showing info about our Boot 1.5.2 applications.
1.4.6 should work with Boot 1.5.6 if and Camden.SR5 or -6 but not with Dalston...
@aschneid75 I also encountered the same problem, I use 1.4.6
and Dalston.RC1
.
according to @joshiste I added the admin project solve the problem
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Camden.SR6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
1.4.6 is not compatible with dalston! you have to use the unreleased 1.5.0 of sba
1.5.0 Release works great with Boot 1.5.2 and Dalston Release. Just updated to test and no issues. Thanks!
Faced the same problem, I use a combined App :
@SpringBootApplication
@EnableEurekaServer
@EnableConfigServer
@EnableAdminServer
The Dalston release only work with the Spring Boot Admin 1.5.0 release.
Following the "Getting started" section, I created an empty project via start.spring.io and the following dependencies:
I add the annotations:
But for any reason I have the following exception:
I guess I am doing something wrong or I missed something but did not manage to find out what's going wrong...