我正在嘗試爲我的彈簧應用程序創建Junit測試。我有基於註釋的配置沒有xmls。當我運行測試,我收到以下錯誤: java.lang.IllegalStateException: Failed to load ApplicationContext
at org.springframework.test.context.cache.DefaultCacheAwareContextLoader
我正在爲基於spring啓動的應用程序編寫junits,而我的bean依賴於application-.properties中指定的一些配置參數。 在我的配置類我在哪裏產生豆類, @Configuration
public class AppConfig{
@Value("${MyProperty}")
private String myProperty;
@Bean
public m