特定の条件が満たされた場合にのみ、Spring コンテキストでインポートできますか?
<!-- import ONLY IF current environment is NOT testing -->
<import resource="classpath:context/caching-context.xml" />
現在、テストケースにまったく異なるコンテキストをインポートすることでそれを行っています
@ContextConfiguration(locations = { "classpath*:ApplicationContextTesting.xml" })
しかし、本番用とテスト用の 2 つの別個のアプリケーション コンテキストを維持しない、より洗練されたソリューションがあるかもしれません。