liquibase.ext.hibernate.database.HibernateSpringDatabase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-hibernate4 Show documentation
Show all versions of liquibase-hibernate4 Show documentation
Liquibase extension for hibernate integration including generating changesets based on changed
hibernate mapping files
The newest version!
package liquibase.ext.hibernate.database;
import liquibase.database.DatabaseConnection;
import liquibase.exception.DatabaseException;
import liquibase.ext.hibernate.database.connection.HibernateConnection;
import org.hibernate.cfg.Configuration;
import org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl;
import org.hibernate.jpa.boot.spi.Bootstrap;
import org.hibernate.service.ServiceRegistry;
import org.springframework.beans.MutablePropertyValues;
import org.springframework.beans.PropertyValue;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.TypedStringValue;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.support.ManagedProperties;
import org.springframework.beans.factory.support.SimpleBeanDefinitionRegistry;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.support.ResourcePatternResolver;
import org.springframework.orm.hibernate4.LocalSessionFactoryBean;
import org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager;
import org.springframework.orm.jpa.persistenceunit.SmartPersistenceUnitInfo;
import org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter;
import org.w3c.dom.Document;
import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import javax.persistence.spi.PersistenceUnitInfo;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import java.io.IOException;
import java.io.StringReader;
import java.util.List;
import java.util.Map;
import java.util.Properties;
/**
* Database implementation for "spring" hibernate configurations.
* This supports passing a spring XML file reference and bean name or a package containing hibernate annotated classes.
*/
public class HibernateSpringDatabase extends HibernateDatabase {
public boolean isCorrectDatabaseImplementation(DatabaseConnection conn) throws DatabaseException {
return conn.getURL().startsWith("hibernate:spring:");
}
@Override
protected Configuration buildConfiguration(HibernateConnection connection) throws DatabaseException {
if (isXmlFile(connection.getPath())) {
return buildConfigurationFromXml(connection);
} else {
return buildConfigurationFromScanning(connection);
}
}
/**
* Return true if the given path is a spring XML file.
*/
protected boolean isXmlFile(String path) {
if (path.contains("/")) {
return true;
}
ClassPathResource resource = new ClassPathResource(path);
try {
if (resource.exists() && !resource.getFile().isDirectory()) {
return true;
} else {
return false;
}
} catch (IOException e) {
return false;
}
}
/**
* Parse the given URL assuming it is a spring XML file
*/
protected Configuration buildConfigurationFromXml(HibernateConnection connection) throws DatabaseException {
Configuration config = new Configuration();
// Disable xml validation
DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
documentBuilderFactory.setValidating(false);
// Read configuration
BeanDefinitionRegistry registry = new SimpleBeanDefinitionRegistry();
XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(registry);
reader.setNamespaceAware(true);
reader.loadBeanDefinitions(new ClassPathResource(connection.getPath()));
Properties props = connection.getProperties();
Class extends LocalSessionFactoryBean> beanClass = LocalSessionFactoryBean.class;
String beanName = props.getProperty("bean", null);
String beanClassName = props.getProperty("beanClass", null);
if (beanClassName != null) {
beanClass = findClass(beanClassName, beanClass);
}
if (beanName == null) {
throw new IllegalStateException("A 'bean' name is required, matching a '" + beanClassName + "' definition in '" + connection.getPath() + "'.");
}
BeanDefinition beanDef = registry.getBeanDefinition(beanName);
if (beanDef == null) {
throw new IllegalStateException("A bean named '" + beanName + "' could not be found in '" + connection.getPath() + "'.");
}
MutablePropertyValues properties = beanDef.getPropertyValues();
// Add annotated classes list.
PropertyValue annotatedClassesProperty = properties.getPropertyValue("annotatedClasses");
if (annotatedClassesProperty != null) {
List annotatedClasses = (List) annotatedClassesProperty.getValue();
if (annotatedClasses != null) {
for (TypedStringValue className : annotatedClasses) {
LOG.info("Found annotated class " + className.getValue());
config.addAnnotatedClass(findClass(className.getValue()));
}
}
}
try {
// Add mapping locations
PropertyValue mappingLocationsProp = properties.getPropertyValue("mappingLocations");
if (mappingLocationsProp != null) {
List mappingLocations = (List) mappingLocationsProp.getValue();
if (mappingLocations != null) {
ResourcePatternResolver resourcePatternResolver = new PathMatchingResourcePatternResolver();
for (TypedStringValue mappingLocation : mappingLocations) {
LOG.info("Found mappingLocation " + mappingLocation.getValue());
Resource[] resources = resourcePatternResolver.getResources(mappingLocation.getValue());
for (int i = 0; i < resources.length; i++) {
LOG.info("Adding resource " + resources[i].getURL());
try {
DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();
// Disable DTD resolution
documentBuilder.setEntityResolver(new EntityResolver() {
@Override
public InputSource resolveEntity(String arg0, String arg1) throws SAXException, IOException {
return new InputSource(new StringReader(""));
}
});
Document document = documentBuilder.parse(resources[i].getInputStream());
config.addDocument(document);
} catch (SAXException e) {
throw new DatabaseException("Error reading document " + resources[i].getURL(), e);
}
}
}
}
}
} catch (Exception e) {
if (e instanceof DatabaseException) {
throw (DatabaseException) e;
} else {
throw new DatabaseException(e);
}
}
// Add properties
ManagedProperties hibernateProperties = (ManagedProperties) properties.getPropertyValue("hibernateProperties").getValue();
if (hibernateProperties != null) {
Properties configurationProperties = new Properties();
for (Map.Entry, ?> entry : hibernateProperties.entrySet()) {
TypedStringValue key = (TypedStringValue) entry.getKey();
TypedStringValue value = (TypedStringValue) entry.getValue();
configurationProperties.setProperty(key.getValue(), value.getValue());
}
config.setProperties(configurationProperties);
} else {
throw new IllegalStateException("Please provide a 'hibernateProperties' property set to define the hibernate connection settings.");
}
return config;
}
private Class> findClass(String className) {
return findClass(className, Object.class);
}
private Class extends T> findClass(String className, Class superClass) {
try {
Class> newClass = Class.forName(className);
if (superClass.isAssignableFrom(newClass)) {
return newClass.asSubclass(superClass);
} else {
throw new IllegalStateException("The provided class '" + className + "' is not assignable from the '" + superClass.getName() + "' superclass.");
}
} catch (ClassNotFoundException e) {
throw new IllegalStateException("Unable to find required class: '" + className + "'. Please check classpath and class name.");
}
}
/**
* Build hibernate configuration assuming the passed connection URL is a package to scan
* @param connection
* @return
*/
public Configuration buildConfigurationFromScanning(HibernateConnection connection) {
String[] packagesToScan = connection.getPath().split(",");
for (String packageName : packagesToScan) {
LOG.info("Found package "+packageName);
}
DefaultPersistenceUnitManager internalPersistenceUnitManager = new DefaultPersistenceUnitManager();
internalPersistenceUnitManager.setPackagesToScan(packagesToScan);
String dialectName = connection.getProperties().getProperty("dialect", null);
if (dialectName == null) {
throw new IllegalArgumentException("A 'dialect' has to be specified.");
}
LOG.info("Found dialect "+dialectName);
internalPersistenceUnitManager.preparePersistenceUnitInfos();
PersistenceUnitInfo persistenceUnitInfo = internalPersistenceUnitManager.obtainDefaultPersistenceUnitInfo();
HibernateJpaVendorAdapter jpaVendorAdapter = new HibernateJpaVendorAdapter();
jpaVendorAdapter.setDatabasePlatform(dialectName);
String enhancedId = connection.getProperties().getProperty("hibernate.enhanced_id", "false");
LOG.info("Found hibernate.enhanced_id" + enhancedId);
Map jpaPropertyMap = jpaVendorAdapter.getJpaPropertyMap();
jpaPropertyMap.put("hibernate.archive.autodetection", "false");
jpaPropertyMap.put("hibernate.id.new_generator_mappings", enhancedId);
if (persistenceUnitInfo instanceof SmartPersistenceUnitInfo) {
((SmartPersistenceUnitInfo) persistenceUnitInfo).setPersistenceProviderPackageName(jpaVendorAdapter.getPersistenceProviderRootPackage());
}
EntityManagerFactoryBuilderImpl builder = (EntityManagerFactoryBuilderImpl) Bootstrap.getEntityManagerFactoryBuilder(persistenceUnitInfo,
jpaPropertyMap);
ServiceRegistry serviceRegistry = builder.buildServiceRegistry();
return builder.buildHibernateConfiguration(serviceRegistry);
}
@Override
public String getShortName() {
return "hibernateSpring";
}
@Override
protected String getDefaultDatabaseProductName() {
return "Hibernate Spring";
}
}