Added option to use many Context Locations

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@997996 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Lukasz Lenart
2010-09-17 06:45:24 +00:00
parent 2a6c223034
commit 0b303e4aa2
@@ -42,8 +42,8 @@ public abstract class StrutsSpringTestCase extends StrutsTestCase {
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, applicationContext);
}
protected String getContextLocations() {
return DEFAULT_CONTEXT_LOCATION;
protected String[] getContextLocations() {
return new String[] {DEFAULT_CONTEXT_LOCATION};
}
}