Adding Custom Environments to Apollo Configuration Center: A Practical Guide
Adding a Custom Environment (SIT) to Apollo
To extend Apollo with a new environment, such as SIT (System Integration Testing), modify the following core comopnents:
1. Env Enum Class
File: com.ctrip.framework.apollo.core.enums.Env
Add the SIT enumeration value:
public enum Env {
LOCAL, DEV, FWS, FAT, UAT, LPT, PRO, TOOLS, UNKNOWN, SIT;
...
Posted on Sat, 18 Jul 2026 16:44:57 +0000 by orion2004