13 lines
282 B
Java
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;
|
|
}
|