Recent Posts
Recent Comments
목록build.gradle properties load (1)
HEROJOON 블로그(히로블)
build.gradle에서 application.properties 읽어오기
목표 build.gradle에서 application.properties의 key, value를 읽어 올 수 있게 설정 해보기 전체 예제 코드: https://github.com/herojoon/spring-profile-project/tree/main 테스트 환경 spring boot 2.6.7 gradle 6.9.2 - File: build.gradle /** * 방법1 (Properties를 InputStream으로 읽기) * 1) Properties에 src/main/resources에 위치한 application.properties를 load로 읽어옵니다. * 2) 읽어 온 properties에 key값을 String형으로 입력하여 존재여부를 확인하거나 value를 가져올 수 있습니다. */ d..
Spring
2022. 4. 22. 23:09