在JHipster生成的应用程序中运行@SpringBootTest时,似乎忽略了活动配置文件。
当我运行应用程序时,我可以看到正确的活动配置文件集。
.. The following profiles are active: swagger,dev
当我运行@SpringBootTest时,我看到以下内容:
... No active profile set, falling back to default profiles: default
JHipster在src/main/resources/config
下存储配置文件。如果我将它们移动到src/main/resources
一级,就像在标准的spring-boot应用程序中那样,@ SpringBootTest会正确地选择活动的配置文件,但是它会破坏其他内容。
有关如何在JHipster应用程序中设置活动配置文件以进行集成测试的任何想法?
感谢。