net.sf.jasperreports.spring.SpringExtensionsRegistryFactory Maven / Gradle / Ivy
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2023 Cloud Software Group, Inc. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
* JasperReports 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 3 of the License, or
* (at your option) any later version.
*
* JasperReports 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 JasperReports. If not, see .
*/
package net.sf.jasperreports.spring;
import java.net.URL;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.ListableBeanFactory;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.core.io.UrlResource;
import net.sf.jasperreports.engine.JRPropertiesMap;
import net.sf.jasperreports.engine.JRRuntimeException;
import net.sf.jasperreports.engine.util.JRLoader;
import net.sf.jasperreports.extensions.DefaultExtensionsRegistry;
import net.sf.jasperreports.extensions.ExtensionsRegistry;
import net.sf.jasperreports.extensions.ExtensionsRegistryFactory;
/**
* A {@link ExtensionsRegistryFactory} which works by loading a Spring beans XML
* file and using beans of specific types as extensions.
*
*
* The factory requires a property named
* {@link net.sf.jasperreports.extensions.DefaultExtensionsRegistry#PROPERTY_REGISTRY_PREFIX net.sf.jasperreports.extension.<registry_id>.spring.beans.resource}
* to be present in the properties map passed to
* {@link #createRegistry(String, JRPropertiesMap)}.
* The value of this property must resolve to a resource name which is loaded
* from the context classloader, and parsed as a Spring beans XML file.
*
*
* Once the Spring beans XML file is loaded, this factory creates a
* {@link SpringExtensionsRegistry} instance which will use the bean factory.
*
* @author Lucian Chirita ([email protected])
*/
public class SpringExtensionsRegistryFactory implements
ExtensionsRegistryFactory
{
private static final Log log = LogFactory.getLog(
SpringExtensionsRegistryFactory.class);
public static final String EXCEPTION_MESSAGE_KEY_NO_SPRING_RESOURCE_SET = "extensions.no.spring.resource.set";
public static final String EXCEPTION_MESSAGE_KEY_SPRING_RESOURCE_NOT_FOUND = "extensions.spring.resource.not.found";
/**
* The suffix of the property that gives the Spring beans XML resource name.
*/
public static final String PROPERTY_SUFFIX_SPRING_BEANS_RESOURCE =
".spring.beans.resource";
@Override
public ExtensionsRegistry createRegistry(String registryId,
JRPropertiesMap properties)
{
ListableBeanFactory beanFactory = getBeanFactory(registryId, properties);
return new SpringExtensionsRegistry(beanFactory);
}
protected ListableBeanFactory getBeanFactory(String registryId,
JRPropertiesMap properties)
{
String resourceProp = DefaultExtensionsRegistry.PROPERTY_REGISTRY_PREFIX
+ registryId + PROPERTY_SUFFIX_SPRING_BEANS_RESOURCE;
String resource = properties.getProperty(resourceProp);
if (resource == null)
{
throw
new JRRuntimeException(
EXCEPTION_MESSAGE_KEY_NO_SPRING_RESOURCE_SET,
(Object[])null);
}
URL resourceLocation = JRLoader.getResource(resource);
if (resourceLocation == null)
{
throw
new JRRuntimeException(
EXCEPTION_MESSAGE_KEY_SPRING_RESOURCE_NOT_FOUND,
new Object[]{resource, registryId});
}
if (log.isDebugEnabled())
{
log.debug("Creating Spring beans factory for extensions registry "
+ registryId + " using "+ resourceLocation);
}
DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(beanFactory);
reader.loadBeanDefinitions(new UrlResource(resourceLocation));
return beanFactory;
}
}