반응형
servlet.xml 에서 등록
<!-- properties -->
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath:/properties/config#{systemProperties['spring.profiles.active']}.properties" />
<property name="fileEncoding" value="UTF-8" />
</bean>
properties 파일에 다음과 같이 있다고 가정
db.username=test
class 파일에서는 다음과 같이 사용
@Value("${db.username}")
private String username;
반응형
'Backend > Java' 카테고리의 다른 글
JSTL 년도 select List (0) | 2020.11.09 |
---|---|
파일 다운로드 최신 (0) | 2020.10.29 |
BufferedReader (0) | 2020.07.28 |
URL 호출 (0) | 2020.07.07 |
IP 및 모바일 체크 (0) | 2020.03.23 |