1
 2
 3
 4
 5
 6
 7
 8
 9
10
 @Value("${spring.profiles.active}")
    private String profile;
    private boolean isDebug;


    @PostConstruct
    private void init() {
        isDebug = "dev".equalsIgnoreCase(profile);
        log.info("环境变量 {} {}",profile,isDebug);
    }