スタンドアロンのSpring環境をテストするとき、次のことができます:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({ "classpath:spring-*.xml" })
@ActiveProfiles( profiles = { "Prod","bsi"})
public class SampleTest
Spring 統合で Struts 2 をテストする場合、以下を使用できます。
public class SessionManagement extends StrutsSpringTestCase {
@Override
public String[] getContextLocations() {
return new String[] {"classpath:spring-*.xml"};
}
}
しかし、ここでアクティブなスプリング プロファイルを設定するにはどうすればよいでしょうか?