org.frameworkset.web.servlet.context.WebLinkConfigFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-mvc Show documentation
Show all versions of bboss-mvc Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
The newest version!
package org.frameworkset.web.servlet.context;
import org.frameworkset.spi.assemble.LinkConfigFile;
import org.frameworkset.spi.assemble.PropertiesContainer;
public class WebLinkConfigFile extends LinkConfigFile {
public WebLinkConfigFile(String fullPath, String configFile, LinkConfigFile parent) {
super(fullPath, configFile, parent);
multiRoot = true;
// TODO Auto-generated constructor stub
}
@Override
public void addLinkConfigFile(LinkConfigFile linkConfigFile) {
//return ;
}
@Override
public void _loopback(PropertiesContainer propertiesContainer,LinkConfigFile son) {
if( son.getConfigFile().equals(this.getConfigFile()))
{
// if(configPropertiesFile == null)
// configPropertiesFile = new PropertiesContainer();
// configPropertiesFile.mergeParentConfigProperties(propertiesContainer);
configPropertiesFile = propertiesContainer;
}
super._loopback(propertiesContainer, son);
}
}