본문 바로가기

프로그래밍/Web

[spring] 프로퍼티 값 읽기

메인 프로퍼티 : application.properties

기본 프로퍼티로 project/src/main/resources/ 에 위치하게 된다.


@Value 어노테이션을 사용해 해당 변수에 값을 할당해 준다.


{

@Value("${my.item}")

private String value;

.

.

}


프로퍼티 파일 추가 

리소스에 sub.properties 파일을 추가 하는 경우 해당 설정파일을 등록한 뒤 사용해야 한다.

@PropertySource 어노테이션으로 설정 파일을 등록.



@Configuration

@EnableAutoCofiguration

@PropertySource("sub.properties")

public class MyConfig {

@Value("${sub.item})

private String subValue;

.

.



}




'프로그래밍 > Web' 카테고리의 다른 글

openssl  (0) 2018.07.17
Windows 레드마인 설치(Bitnami)  (1) 2017.09.22
Gradle Wrapper  (0) 2017.03.06
스프링 요청/응답  (0) 2017.02.26
JPA 쿼리 이것저것  (0) 2017.02.22
[spring] 핸들러 인터셉터  (0) 2017.01.24
[spring] Spring boot 기본 설정  (0) 2017.01.24
[spring] batch 작업관련 요소들  (0) 2012.09.28
[spring] JAVA코드 테스트를 위한 Spring설정  (0) 2012.09.25
[MyBatis] 기본 사용법  (0) 2012.05.13