在Spring Boot中,可以通过以下步骤在test文件夹中添加另一个资源文件夹:
@TestPropertySource
注解指定资源文件的位置。下面是一个示例:
test.property=test value
@TestPropertySource
注解指定资源文件的位置,例如:@RunWith(SpringRunner.class)
@SpringBootTest
@TestPropertySource(locations = "classpath:test.properties")
public class MyTest {
// 测试代码
}
这样,在测试代码中就可以使用@Value
注解来获取配置文件中的值了,例如:
@RunWith(SpringRunner.class)
@SpringBootTest
@TestPropertySource(locations = "classpath:test.properties")
public class MyTest {
@Value("${test.property}")
private String testProperty;
@Test
public void test() {
System.out.println(testProperty); // 输出:test value
}
}
推荐的腾讯云相关产品和产品介绍链接地址:
请注意,以上链接仅供参考,具体选择和使用腾讯云产品时,请根据实际需求和情况进行判断和决策。
领取专属 10元无门槛券
手把手带您无忧上云