Search in sources :

Example 1 with DTDEntityResolver

use of org.hibernate.util.xpl.DTDEntityResolver in project jbosstools-hibernate by jbosstools.

the class ConfigurationFactory method configureStandardConfiguration.

private IConfiguration configureStandardConfiguration(final boolean includeMappings, IConfiguration localCfg, Properties properties) {
    if (properties != null) {
        localCfg = localCfg.setProperties(properties);
    }
    EntityResolver entityResolver = new DTDEntityResolver(service);
    if (StringHelper.isNotEmpty(prefs.getEntityResolverName())) {
        try {
            entityResolver = (EntityResolver) ReflectHelper.classForName(prefs.getEntityResolverName()).newInstance();
        } catch (Exception c) {
            throw new HibernateConsoleRuntimeException(ConsoleMessages.ConsoleConfiguration_could_not_configure_entity_resolver + prefs.getEntityResolverName(), c);
        }
    }
    localCfg.setEntityResolver(entityResolver);
    if (StringHelper.isNotEmpty(prefs.getNamingStrategy())) {
        try {
            INamingStrategy ns = service.newNamingStrategy(prefs.getNamingStrategy());
            localCfg.setNamingStrategy(ns);
        } catch (Exception c) {
            throw new HibernateConsoleRuntimeException(ConsoleMessages.ConsoleConfiguration_could_not_configure_naming_strategy + prefs.getNamingStrategy(), c);
        }
    }
    localCfg = loadConfigurationXML(localCfg, includeMappings, entityResolver);
    changeDatasourceProperties(localCfg);
    localCfg = configureConnectionProfile(localCfg);
    // replace dialect if it is set in preferences
    if (StringHelper.isNotEmpty(prefs.getDialectName())) {
        localCfg.setProperty(environment.getDialect(), prefs.getDialectName());
    }
    if (StringHelper.isEmpty(localCfg.getProperty("javax.persistence.validation.mode"))) {
        // $NON-NLS-1$
        // $NON-NLS-1$//$NON-NLS-2$
        localCfg.setProperty("javax.persistence.validation.mode", "none");
    }
    return localCfg;
}
Also used : INamingStrategy(org.jboss.tools.hibernate.runtime.spi.INamingStrategy) EntityResolver(org.xml.sax.EntityResolver) DTDEntityResolver(org.hibernate.util.xpl.DTDEntityResolver) DTDEntityResolver(org.hibernate.util.xpl.DTDEntityResolver) SQLException(java.sql.SQLException) DocumentException(org.dom4j.DocumentException) IOException(java.io.IOException) FileNotFoundException(java.io.FileNotFoundException) SAXParseException(org.xml.sax.SAXParseException) MappingException(org.jboss.tools.hibernate.exception.MappingException) HibernateException(org.jboss.tools.hibernate.runtime.spi.HibernateException)

Aggregations

FileNotFoundException (java.io.FileNotFoundException)1 IOException (java.io.IOException)1 SQLException (java.sql.SQLException)1 DocumentException (org.dom4j.DocumentException)1 DTDEntityResolver (org.hibernate.util.xpl.DTDEntityResolver)1 MappingException (org.jboss.tools.hibernate.exception.MappingException)1 HibernateException (org.jboss.tools.hibernate.runtime.spi.HibernateException)1 INamingStrategy (org.jboss.tools.hibernate.runtime.spi.INamingStrategy)1 EntityResolver (org.xml.sax.EntityResolver)1 SAXParseException (org.xml.sax.SAXParseException)1