package com.example.caseData.config; import lombok.Getter; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component @Getter public class EnvConfig { @Value("${spring.profiles.active}") private String active; }