時,排除ApplicationStartup事件監聽我最近增加了一個ApplicationStartup類我SpringBoot項目測試
@Component
public class ApplicationStartup
implements ApplicationListener<ApplicationReadyEvent> { ...
它實現了ApplicationListener。
現在,當我運行與該類無關的舊JUNit測試時,testrunner會嘗試運行我的StartupListener,在這些情況下,這兩者都不是必需的。
當我的測試初始化時,如何跳過ApplicationListener?
@RunWith(SpringRunner.class)
@SpringBootTest
public class SubmissionItemManagerTest {...
你想避免只有一個豆嗎? –