SystemProperties.java 313 B

1234567891011121314151617
  1. package com.ema.admin.config;
  2. import lombok.Data;
  3. import org.springframework.beans.factory.annotation.Value;
  4. import org.springframework.stereotype.Component;
  5. /**
  6. * 系统属性配置类
  7. */
  8. @Data
  9. @Component
  10. public class SystemProperties {
  11. @Value("${spring.profiles.active:}")
  12. private String active;
  13. }