use of org.springframework.core.io.DefaultResourceLoader in project spring-framework by spring-projects.
the class ClassPathScanningCandidateComponentProviderTests method bogusPackageWithScan.
@Test
public void bogusPackageWithScan() {
ClassPathScanningCandidateComponentProvider provider = new ClassPathScanningCandidateComponentProvider(true);
provider.setResourceLoader(new DefaultResourceLoader(CandidateComponentsTestClassLoader.disableIndex(getClass().getClassLoader())));
Set<BeanDefinition> candidates = provider.findCandidateComponents("bogus");
assertEquals(0, candidates.size());
}
use of org.springframework.core.io.DefaultResourceLoader in project spring-framework by spring-projects.
the class AbstractGenericWebContextLoader method configureWebResources.
/**
* Configures web resources for the supplied web application context (WAC).
*
* <h4>Implementation Details</h4>
*
* <p>If the supplied WAC has no parent or its parent is not a WAC, the
* supplied WAC will be configured as the Root WAC (see "<em>Root WAC
* Configuration</em>" below).
*
* <p>Otherwise the context hierarchy of the supplied WAC will be traversed
* to find the top-most WAC (i.e., the root); and the {@link ServletContext}
* of the Root WAC will be set as the {@code ServletContext} for the supplied
* WAC.
*
* <h4>Root WAC Configuration</h4>
*
* <ul>
* <li>The resource base path is retrieved from the supplied
* {@code WebMergedContextConfiguration}.</li>
* <li>A {@link ResourceLoader} is instantiated for the {@link MockServletContext}:
* if the resource base path is prefixed with "{@code classpath:}", a
* {@link DefaultResourceLoader} will be used; otherwise, a
* {@link FileSystemResourceLoader} will be used.</li>
* <li>A {@code MockServletContext} will be created using the resource base
* path and resource loader.</li>
* <li>The supplied {@link GenericWebApplicationContext} is then stored in
* the {@code MockServletContext} under the
* {@link WebApplicationContext#ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE} key.</li>
* <li>Finally, the {@code MockServletContext} is set in the
* {@code WebApplicationContext}.</li>
*
* @param context the web application context for which to configure the web
* resources
* @param webMergedConfig the merged context configuration to use to load the
* web application context
*/
protected void configureWebResources(GenericWebApplicationContext context, WebMergedContextConfiguration webMergedConfig) {
ApplicationContext parent = context.getParent();
// the Root WAC:
if (parent == null || (!(parent instanceof WebApplicationContext))) {
String resourceBasePath = webMergedConfig.getResourceBasePath();
ResourceLoader resourceLoader = resourceBasePath.startsWith(ResourceLoader.CLASSPATH_URL_PREFIX) ? new DefaultResourceLoader() : new FileSystemResourceLoader();
ServletContext servletContext = new MockServletContext(resourceBasePath, resourceLoader);
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, context);
context.setServletContext(servletContext);
} else {
ServletContext servletContext = null;
// find the Root WAC
while (parent != null) {
if (parent instanceof WebApplicationContext && !(parent.getParent() instanceof WebApplicationContext)) {
servletContext = ((WebApplicationContext) parent).getServletContext();
break;
}
parent = parent.getParent();
}
Assert.state(servletContext != null, "Failed to find Root WebApplicationContext in the context hierarchy");
context.setServletContext(servletContext);
}
}
use of org.springframework.core.io.DefaultResourceLoader in project OpenClinica by OpenClinica.
the class LoggerStartupListener method start.
@Override
public void start() {
if (started)
return;
Context context = getContext();
if (resourceLoader == null)
resourceLoader = new DefaultResourceLoader();
try {
webapp = getWebAppName(resourceLoader.getResource("/").getURI().getPath());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
DATAINFO = loadProperties("datainfo.properties");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
getPropertiesSource();
context.putProperty("log.dir", getField("log.dir"));
context.putProperty("logLocation", getField("logLocation"));
context.putProperty("logLevel", getField("logLevel"));
context.putProperty("hibernateSQLLogLevel", getField("hibernateSQLLogLevel"));
context.putProperty("hibernateTypeLogLevel", getField("hibernateTypeLogLevel"));
started = true;
}
use of org.springframework.core.io.DefaultResourceLoader in project dhis2-core by dhis2.
the class HelpAction method execute.
// -------------------------------------------------------------------------
// Action implementation
// -------------------------------------------------------------------------
@Override
public String execute() throws Exception {
List<Locale> locales = localeManager.getLocalesOrderedByPriority();
ResourceLoader resourceLoader = new DefaultResourceLoader();
for (Locale locale : locales) {
String helpPage = helpPagePreLocale + locale.toString() + helpPagePostLocale;
if (resourceLoader.getResource(helpPage) != null) {
this.helpPage = helpPage;
return SUCCESS;
}
}
return SUCCESS;
}
Aggregations