且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

春季启动测试:由于缺少EmbeddedServletContainerFactory bean,无法启动EmbeddedWebApplicationContext

更新时间:2021-12-06 17:13:03

您实际上不是在配置类中设置容器,而是在测试类中进行设置.将@Bean移至@Configuration,您可能会遇到更多的运气.

You're actually not setting up the container in a config class, you're doing it in the test class. Move that @Bean to a @Configuration and you might have more luck.