junit在升级到SpringBoot2.3后失败

6yoyoihd  于 2021-07-23  发布在  Java
关注(0)|答案(0)|浏览(158)

将我的应用程序从springboot2.1.6升级到springboot2.3在yaml文件中添加这个属性之后,我就可以运行我的应用程序了
spring.main.allow-bean-definition-overriding:真
但即使在我的yml文件中有相同的属性,得到下面的错误,任何线索都将被感激
defaultcacheawarecontextloaderdelegate处的java.lang.illegalstateexception。java:132 caused 作者:org.springframework.beans.factory.support.beandefinitionoverrideeexception at defaultlistablebeanfactory。java:995
这是我的示例junit类,仅供参考

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@ActiveProfiles("local,test")
@DirtiesContext
public class ControllerContextTest {

}

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题