List of usage examples for org.springframework.web.context.support XmlWebApplicationContext subclass-usage
From source file gov.nih.nci.cdmsconnector.util.CDMSConnectorApplicationContext.java
public class CDMSConnectorApplicationContext extends XmlWebApplicationContext { protected String[] getDefaultConfigLocations() { /*String confFilesLocation = getServletContext().getRealPath("") .replaceAll("webapps", "conf"); try {
From source file org.intalio.tempo.web.SysPropWebApplicationContext.java
/**
* Custom XMLWebApplicationContext that allows loading configuration files using system properties, e.g.,
* <br/>
* <context-param><br/>
* <param-name>contextConfigLocation</param-name><br/>
* <param-value>${org.intalio.tempo.configDirectory}/tempo-tms.xml </param-value><br/>
From source file com.predic8.membrane.servlet.config.spring.BaseLocationXmlWebApplicationContext.java
public class BaseLocationXmlWebApplicationContext extends XmlWebApplicationContext implements BaseLocationApplicationContext { @Override public String getBaseLocation() { return getConfigLocations()[0];
From source file org.nekorp.workflow.backend.optimization.CustomXmlWebApplicationContext.java
/** * */ public class CustomXmlWebApplicationContext extends XmlWebApplicationContext { protected void initBeanDefinitionReader(XmlBeanDefinitionReader beanDefinitionReader) {
From source file technology.tikal.gae.optimization.CustomXmlWebApplicationContext.java
/** * @author Nekorp */ public class CustomXmlWebApplicationContext extends XmlWebApplicationContext { protected void initBeanDefinitionReader(XmlBeanDefinitionReader beanDefinitionReader) {
From source file org.os890.adapter.cdi.springmvc.CustomXmlWebApplicationContext.java
public class CustomXmlWebApplicationContext extends XmlWebApplicationContext { public CustomXmlWebApplicationContext() { addBeanFactoryPostProcessor(new BeanFactoryAwareBeanFactoryPostProcessor()); } }
From source file com.javaetmoi.core.spring.JBoss5XmlWebApplicationContext.java
/**
* {@link XmlWebApplicationContext} subclass which support the VFS 2 and JBoss 5.
*
* <p>
* Spring Framework 4.0 removed support for JBoss AS 5's VFS variant. The {@link VfsUtils} class
* does not support any more the VFS 2 of JBoss AS 5 or JBoss 5.x EAP.
From source file it.scoppelletti.programmerpower.web.spring.XmlWebApplicationContextEx.java
/**
* Contesto Spring di un’applicazione Web.
*
* <P>La classe {@code XmlWebApplicationContextEx} personalizza il rilevamento
* delle risorse di configurazione del contesto dell’applicazione Spring
* rispetto alla classe di base Spring {@code XmlWebApplicationContext}.<BR>
From source file com.griddynamics.banshun.web.SingleResourceWebChildContext.java
public final class SingleResourceWebChildContext extends XmlWebApplicationContext { private Resource res; SingleResourceWebChildContext(Resource res, ApplicationContext parent) { this.res = res; setParent(parent);
From source file org.atomserver.utils.conf.ExtendedWebContext.java
/** * @author Chris Berry (chriswberry at gmail.com) * @author Bryon Jacob (bryon at jacob.net) */ public class ExtendedWebContext extends XmlWebApplicationContext { private static final Log log = LogFactory.getLog(ExtendedWebContext.class);