5
Spring(起動)では、@IntegrationTest
と@WebIntegrationTest
の違いは何ですか?@IntegrationTestと@WebIntegrationTestの注釈
ドキュメントによれば、両方のアノテーションは、通常のポートでリッスンする完全にロードされたアプリケーションサーバーを提供します。
Spring(起動)では、@IntegrationTest
と@WebIntegrationTest
の違いは何ですか?@IntegrationTestと@WebIntegrationTestの注釈
ドキュメントによれば、両方のアノテーションは、通常のポートでリッスンする完全にロードされたアプリケーションサーバーを提供します。
@WebIntegrationTest = @IntegrationTest + @WebAppConfiguration
まあ、私はドキュメントがクリアされていると思う: 'IntegrationTest' @:*あなたのテストでも代わりWebIntegrationTestの使用を検討して@WebAppConfiguration使用している場合は*、' @ WebIntegrationTest':*このアノテーションは、@IntegrationTestと@ WebAppConfiguration *の代替として使用できます。これから、@ @ IntegrationTestと@ WebAppConfigurationは、@ WebIntegrationTestと同じであると仮定します。 –
ありがとう@BohuslavBurghardt、私はそれを逃した必要があります。 –