org.jboss.spring.deployers.SpringParserDeployer Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.spring.deployers;
import org.jboss.deployers.vfs.spi.deployer.AbstractVFSParsingDeployer;
import org.jboss.deployers.vfs.spi.structure.VFSDeploymentUnit;
import org.jboss.virtual.VirtualFile;
/**
* Spring deployer.
* Picks up -spring.xml file.
*
* @author Ales Justin
*/
public class SpringParserDeployer extends AbstractVFSParsingDeployer
{
private boolean useLegacyDefaultName;
public SpringParserDeployer()
{
super(SpringMetaData.class);
setSuffix("-spring.xml");
setJarExtension(".spring");
setUseLegacyDefaultName(false);
}
/**
* Get the use name flag.
*
* @return true if the default name should be determined from deployment unit
*/
protected boolean isUseLegacyDefaultName()
{
return useLegacyDefaultName;
}
/**
* Should we use deployment unit's name as default.
* e.g. using string before .jar|spring|... as the name
*
* Previous versions used string before .spring as the name,
* setting this to true results in this legacy behaviour.
*
* Current default is string before -spring.xml.
*
* @param useLegacyDefaultName the flag
*/
public void setUseLegacyDefaultName(boolean useLegacyDefaultName)
{
this.useLegacyDefaultName = useLegacyDefaultName;
}
/**
* Get default name from meta file.
*
* @param file the virtual file
* @return default name
*/
protected String getDefaultName(VirtualFile file)
{
String shortName = file.getName();
int p = shortName.indexOf("-spring.xml");
return shortName.substring(0, p);
}
/**
* Get default name from unit.
*
* @param unit the deployment unit
* @return default name
*/
protected String getDefaultName(VFSDeploymentUnit unit)
{
String shortName = unit.getSimpleName();
int p = shortName.lastIndexOf(".");
return shortName.substring(0, p);
}
protected SpringMetaData parse(VFSDeploymentUnit unit, VirtualFile file, SpringMetaData metaData) throws Exception
{
String defaultName;
if (isUseLegacyDefaultName())
defaultName = getDefaultName(unit);
else
defaultName = getDefaultName(file);
return new SpringMetaData(file.toURL(), defaultName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy