728x90 반응형 java config1 [Spring] java/jsp에서 properties value 불러오기 아래와 같은 common.properties 파일이 존재할 때 java와 jsp에서 값을 불러오는 방법을 알아보겠습니다. system.domain=http://localhost:8080 hello.world=hello world!! 1. java Application.java에 properties 파일을 설정하면, @PropertySource({ "classpath:properties/common.properties" }) public class Application { ... } @Value 어노테이션을 사용하여 properties값을 불러올 수 있습니다. import org.springframework.beans.factory.annotation.Value; @Cotroller public class.. 2021. 1. 5. 이전 1 다음 728x90 반응형