ex. Place Holder
linger0310.name = BoongYe linger0310.fullName = ${linger0310.name} Ch
application.properties에 'linger0310.name'이라는 변수를 정의한다.
@Value annotation을 사용하면 .properties에서 정의했던 변수를 참조하여
사용할 수 있다.
SimpleProperties.java
@Component
public class SimpleProperties implements ApplicationRunner {
@Value("${linger0310.name}")
private String name;
@Override
public void run(ApplicationArguments args) throws Exception {
System.out.println("\n==============================");
System.out.println("linger0310.name : " + name);
System.out.println("==============================\n");
}
}
Application.java
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
프로젝트의 src/main/resources에 있는 application.properties는 15위에 속한다.
4순위인 Command line arguments로 15순위인 application.properties 값을 override 해보자.
기존 application.properties
IDE Run/Debug Config
결과
기존 application.properties
Command Line에서 배포한 jar 파일로 argument와 함께 Application 실행
Test에서 properties에 대한 정보는 @AutoWird로 Environment 객체를 주입받아서
이를 통해서 얻을 수 있다.
아래와 같은 Test Code로 application.properties에서 정의한 변수의 값이
내가 원하는 값이 맞는지 Test할 수 있다.
import org.springframework.core.env.Environment;
import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat;
@SpringBootTest
class ApplicationTests {
@Autowired
Environment environment;
@Test
void contextLoads() {
assertThat(environment.getProperty("linger0310.name"))
.isEqualTo("BoongYe");
}
}
'src/test/resources/' 경로에 application.properties를 생성하면
Test Code 빌드 및 실행 시에 override가 일어나, 'src/main/resources'의
application.properties의 내용은 무시된다.
Test Code Build 과정
불편한 점 & 유의해야 할 점
개선 방법
src/main/resources/application.properties
src/test/resources/application.properties
Test Code 실행 결과
src/main/resources/application.properties
테스트 코드에서 @TestPropertySource 어노테이션의
properties를 사용하여 property 변수(linger0310.name) 값 변경@TestPropertySource(properties = "linger0310.name=Bloom") @SpringBootTest class ApplicationTests { @Autowired Environment environment; @Test void contextLoads() { assertThat(environment.getProperty("linger0310.name")) .isEqualTo("Bloom"); } }
테스트 코드 실행 결과
src/main/resources/application.properties
src/test/resources/test.properties
테스트 코드에서 @TestPropertySource 어노테이션의
locations를 사용하여 test.properties 파일을 연결해서
변수(linger0310.name, linger0310.fullName) 값들 변경
@TestPropertySource(locations = "classpath:/test.properties")
@SpringBootTest
class ApplicationTests {
@Autowired
Environment environment;
@Test
void contextLoads() {
assertThat(environment.getProperty("linger0310.fullName"))
.isEqualTo("Yerin Baek");
}
}
테스트 코드 실행 결과