/**
* Subclasses can invoke this to get a context key for the given location.
* This doesn't affect the applicationContext instance variable in this class.
* Dependency Injection cannot be applied from such contexts.
*/
//@Override
protected ConfigurableApplicationContext loadContextLocations(String[] locations)
{
log.info("Loading my own config for: " + StringUtils.arrayToCommaDelimitedString(locations));
XmlWebApplicationContext ctx = new XmlWebApplicationContext();
ctx.setConfigLocations(locations);
ctx.setServletContext(new MockServletContext());
ctx.refresh();
return ctx;
}
DwrControllerTest.java 文件源码
java
阅读 15
收藏 0
点赞 0
评论 0
项目:dwr
作者:
评论列表
文章目录