2019년 10월 30일 수요일

[java] spring @PropertySource 사용

@Service
@PropertySource(value = {
"classpath:config/file.properties"
,"classpath:config/test.properties"
},ignoreResourceNotFound = false)


위와 같이 클래스 상단에 선언



멤버변수 env

@Autowired
private Environment env;


아래와 같이 사용

String uploadRealPath = env.getProperty("file.upload.realPath");


propertie 키 가 중복일 경우 마지막 파일로 오버라이드 된다.

댓글 없음:

댓글 쓰기

[oracle]백업및 복구

[oracle]백업및 복구 오라클 덤프 백업및 복구 윈도우 서버 기반 간단 정리 --디렉터리 조회 sqlplus 또는 dbtool 입력시작 SELECT * FROM DBA_DIRECTORIES ; --D:...