Spring Cloud 1.0.0.RC1 Available Now
Another cheerful holiday message from the Spring team: Spring Cloud 1.0.0.RC1 is now available in the http://repo.spring.io Maven repository. There are plenty of new features including
-
Support for Hystrix metrics aggregation via an annotation
@EnableTurbine
and@EnableTurbineAmqp
(for an AMQP-based collector) -
A rehaul of the Ribbon configuration making it more friendly for Spring users. You can now configure each Ribbon client in its own
ApplicationContext
using@RibbonClient
and override various bits, like theLoadBalancer
, or theServerListFilter
, by providing@Bean
definitions. -
DiscoveryHealthIndicator
is now a composite that users can add information to by declaring@Beans
of typeDiscoveryHealthIndicator
. -
Discovery is now abstracted away from Eureka into a new spring-cloud-commons library, and enabled via new annotations like
…@EnableDiscoveryClient
(instead of the old@EnableEurekaClient
). The same pattern also applies to circuit breakers