All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spring.boxes.gateway.configure.GatewayProperties Maven / Gradle / Ivy

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