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

cn.flood.log.config.LogElasticsearchProperties Maven / Gradle / Ivy

The newest version!
package cn.flood.log.config;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;

/**
 * ES 配置信息
 */
@Data
@ConfigurationProperties(prefix = "spring.audit-log.es")
@RefreshScope
public class LogElasticsearchProperties {


    private String hostNames;
    /**
     * 用户名
     */
    private String username;

    /**
     * 密码
     */
    private String password;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy