2025-05-12 13:28:44 +08:00

13 lines
282 B
Java

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;
}