반응형
Environment와 @PropertySource

Environment는 스프링 프레임워크 (Spring Framework)가 자동으로 Inject하는 빈 (Bean)이다. 

@PropertySource로 Property 파일을 Environment로 로딩할 수 있다.
 
SpringSocial/src/main/resources/setting.properties 파일 내용이 다음과 같다고 하자. 
#facebook appId, secretKey 
facebook.appId=575657749192479 
facebook.secretKey=df3ebe71b7eee8771c6fee1e0124f9ec 
callback.host=http://localhost:8080 
 
  • SocialController.java

실행 결과는 다음과 같다. 
facebook.appId: 575657749192479 
facebook.secretKey: df3ebe71b7eee8771c6fee1e0124f9ec

 

반응형

'Programming > Spring' 카테고리의 다른 글

spring social  (0) 2014.02.12
spring mvc 모델 생성  (0) 2014.02.11
뷰 이름 명시적 지정 :ModelAndView와 String 리턴 타입  (1) 2014.02.04
[Spring] log4j 설정파일 정보  (0) 2014.01.17
[Spring] Spring Login Interceptor 설정  (0) 2014.01.17

+ Recent posts