作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 src/main/test/resources/application-test.yml,根据 SpringBootTest 它将加载 application.yml,然后加载 application-test.yml。但我面临一种情况,我只想为一个测试覆盖 application-test.yml 中的某些属性,但其他测试需要使用 application-test.yml 中的属性。我该怎么做?
我尝试使用@TestPropertySource
注释来覆盖,但它不起作用。
@Slf4j
@RunWith(SpringRunner.class)
@SpringBootTest(classes= MyApplicationTestApplication.class)
@ActiveProfiles("test")
@DirtiesContext
@TestPropertySource(locations = {"classpath:application-test.yml",
"classpath:file-test.properties"})
最佳答案
关于java - 如何在 Spring Boot 测试中覆盖 application-test.yml ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55367576/
我是一名优秀的程序员,十分优秀!