com.spring.boxes.gateway.configure.GatewayProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boxes-gateway-starter Show documentation
Show all versions of spring-boxes-gateway-starter Show documentation
spring-cookie-boxes-boot-starter
The newest version!
package com.spring.boxes.gateway.configure;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import java.io.Serializable;
@Data
@RefreshScope
@NoArgsConstructor
@AllArgsConstructor
@ConfigurationProperties("spring.boxes.gateway.locator")
public class GatewayProperties implements Serializable {
private boolean redis = false;
private boolean memory = true;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy