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

Setting Up Nacos with Spring Cloud Alibaba 2022

Environment Setup Spring Cloud Alibaba 2022 requires Spring Boot 3.0+ and JDK 17 or higher. Check the official documentation for compatibility details. The project structure uses a Maven multi-module setup with the following parent pom.xml: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apa ...

Posted on Sun, 28 Jun 2026 18:07:30 +0000 by spectacularstuff