Spring 에서 Properties 프로필 을 불 러 오 는 네 가지 방식

1.context:property-place holder 탭 을 통 해 프로필 불 러 오기
1.용법 예시:spring.xml 프로필 에 탭 추가    
  
2.spring.xml 에서 프로필 속성 사용:

<!--      url、user、password --> 
<property name="url" value="${jdbc.url}" /> 
<property name="username" value="${jdbc.username}" /> 
<property name="password" value="${jdbc.password}" /> 
3.자바 파일 에서 사용:

@Value("${jdbc_url}") 
ivate String jdbcUrl; //   :         static 
2.util:properties 라벨 을 통 해 설정 파일 불 러 오기
1.용법 예시:spring.xml 프로필 에 탭 추가 
2.spring.xml 에서 프로필 속성 사용:

<property name="username" value="#{util_Spring['jdbc.username']}" /> 
<property name="password" value="#{util_Spring['jdbc.password']}" /> 
3.자바 파일 에서 사용:

@Value(value="#{util_Spring['UTIL_SERVICE_ONE']}") 
 private String UTIL_SERVICE_ONE; 
3.@PropertySource 주 해 를 통 해 프로필 불 러 오기
1.용법 예제:자바 류 파일 에서 Property Source 주 해 를 사용 합 니 다.

@PropertySource(value={"classpath:redis-key.properties"}) 
public class ReadProperties { 
@Value(value="${jdbc.username}") 
 private String USER_NAME; 
} 

2.자바 파일 에서 사용:

@Value(value="${jdbc.username}") 
 private String USER_NAME; 
4.Property Placeholder Configurer 류 를 통 해 설정 파일 을 읽 습 니 다.
1.용법 예제:spring.xml 에서탭 을 사용 하여 설정 합 니 다.

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> 
  <property name="locations"> 
   <list> 
    <value>classpath:redis-key.properties</value> 
   </list> 
  </property> 
  </bean> 
2、 PropertyPlaceholderConfigurer  배치 방법,등가 방식 1,용법 참고 방법 1.
5.사용 할 수 있 습 니 다.  org.springframework.beans.factory.config.PropertiesFactoryBean  불 러 옵 니 다.여 기 는 더 이상 일일이 열거 하지 않 습 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기