사용자 도구

사이트 도구


springframework:springboot:test

문서의 이전 판입니다!


SpringBoot Test

@SpringBootTest

테스트용 프라퍼티 지정

@SpringBootTest(properties = {"some.username=user", "some.password=pwd"},
                webEnvironment = SpringBootTest.WebEnvironment.NONE)

@TestProperties

@TestPropertySource(locations="classpath:test.properties")
public class ExampleApplicationTests {
 
}
 
 
You can use @TestPropertySource
 
@TestPropertySource(
    properties = {
        "some.username=validate",
        "some.password=false"
    }
)

참조

springframework/springboot/test.1543217282.txt.gz · 마지막으로 수정됨: 2018/11/26 16:28 저자 kwon37xi