Browse Source

Add option to control management registration, switch AutoServiceRegistrationProperties to use Lombok

pull/221/head
jihor 8 years ago
parent
commit
011fa5d631
  1. 15
      spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.java

15
spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.java

@ -2,23 +2,24 @@ package org.springframework.cloud.client.serviceregistry; @@ -2,23 +2,24 @@ package org.springframework.cloud.client.serviceregistry;
import org.springframework.boot.context.properties.ConfigurationProperties;
import lombok.Getter;
import lombok.Setter;
/**
* @author Spencer Gibb
*/
@ConfigurationProperties("spring.cloud.service-registry.auto-registration")
@Getter
@Setter
public class AutoServiceRegistrationProperties {
/** If Auto-Service Registration is enabled, default to true. */
private boolean enabled = true;
/** Whether to register the management as a service, defaults to true */
private boolean registerManagement = true;
/** Should startup fail if there is no AutoServiceRegistration, default to false. */
private boolean failFast = false;
public boolean isFailFast() {
return failFast;
}
public void setFailFast(boolean failFast) {
this.failFast = failFast;
}
}

Loading…
Cancel
Save