Spring 애플리케이션 컨텍스트에서 시스템 환경 변수 읽기
Spring에서는 Spring Expression Language를 사용하여 애플리케이션 컨텍스트 내의 시스템 환경 변수에 액세스할 수 있습니다. (SpEL)은 Spring 3.0에서 도입되었습니다. 그렇게 하려면 다음 단계를 따르십시오.
#{systemProperties.env}
<code class="xml"><util:properties id="dbProperties" location="classpath:config_#{systemProperties.env}/db.properties" /></code>
이 코드를 다음과 같이 실행합니다. -Denv=QA, 시스템 환경 변수에 따라 속성 위치를 동적으로 변경할 수 있습니다.
OS 수준 변수에 액세스
OS에서 시스템 환경 변수에 액세스하려면 레벨(JVM 내에 설정된 레벨 대신):
#{systemEnvironment['ENV_VARIABLE_NAME']}
예를 들어 ENV_VARIABLE_NAME 환경 변수에 액세스하려면:
<code class="xml"><util:properties id="dbProperties" location="classpath:config_#{systemEnvironment.ENV_VARIABLE_NAME}/db.properties" /></code>
위 내용은 Spring 애플리케이션 컨텍스트에서 시스템 환경 변수에 액세스하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!