org.openea.eap.framework.env.config.EnvProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eap-spring-boot-starter-env Show documentation
Show all versions of eap-spring-boot-starter-env Show documentation
开发环境拓展,实现类似阿里的特性环境的能力
1. https://segmentfault.com/a/1190000018022987
The newest version!
package org.openea.eap.framework.env.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 环境配置
*
*/
@ConfigurationProperties(prefix = "eap.env")
@Data
public class EnvProperties {
public static final String TAG_KEY = "eap.env.tag";
/**
* 环境标签
*/
private String tag;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy