You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
421 B

3 months ago
  1. package com.example.demo.config;
  2. import org.springframework.context.annotation.Configuration;
  3. /**
  4. * @program: GOLD
  5. * @ClassName EnvConfig
  6. * @description:
  7. * @author: huangqizhen
  8. * @create: 202506-29 13:55
  9. * @Version 1.0
  10. **/
  11. @Configuration
  12. public class EnvConfig {
  13. public static final String ENV = "dev";
  14. public static final String ENV_PROD = "prod";
  15. public static final String ENV_TEST = "test";
  16. }