Spring 도입 속성 파일

2018 단어 spring
예시 코드:설정 클래스 에 쓰기@PropertySource
@PropertySource("classpath:application.properties")

멤버 변 수 를 주입 할 때 사용@Value("${jdbc.jdbcUrl}")그리고 꼭 하나 등록 해 주세요PropertySourcesPlaceholderConfigurer
@Bean
public static PropertySourcesPlaceholderConfigurer propertyConfigure() {
    return new PropertySourcesPlaceholderConfigurer();
}

Spring 의 핵심 프로필 을 도입 하면 클래스 에 설명 을 쓰 십시오.
@ImportResource(value="classpath:applicationContext.xml")

핵심 프로필 에 속성 파일 을 도입 하 는 두 가지 방법:첫 번 째:
<context:property-placeholder location="classpath:application.properties" />

두 번 째 종류:
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
        <value>classpath:jdbc.properties</value>
    </property>
</bean>

참고 자료:http://blog.chinaunix.net/uid-26209648-id-2435959.html

좋은 웹페이지 즐겨찾기