Project

General

Profile

Download (2.33 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<beans xmlns="http://www.springframework.org/schema/beans"
3
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
  xmlns:context="http://www.springframework.org/schema/context"
5
  xsi:schemaLocation="http://www.springframework.org/schema/beans
6
    http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
7
    http://www.springframework.org/schema/context
8
    http://www.springframework.org/schema/context/spring-context-2.5.xsd">
9

    
10
    <!-- enable processing of annotations such as @Autowired and @Configuration -->
11
    <context:annotation-config/>
12

    
13
    <bean class="eu.etaxonomy.cdm.opt.config.DataSourceConfigurer" >
14
    </bean>
15

    
16
    <bean id="jndiHibernateProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
17
        <property name="properties"><!-- This configures default hibernate properties -->
18
            <props>
19
              <!--
20
                the hibernate.dialect will be set by the JndiDataSourceConfig according to the
21
                according WebAppContext attributes or to the environment variable
22
              -->
23
              <prop key="hibernate.hbm2ddl.auto">validate</prop><!-- !!! must never be set to 'update' !!! -->
24
              <prop key="hibernate.cache.region.factory_class">org.hibernate.cache.internal.NoCachingRegionFactory</prop>
25
              <prop key="hibernate.show_sql">false</prop>
26
              <prop key="hibernate.format_sql">false</prop>
27
              <prop key="hibernate.search.default.directory_provider">org.hibernate.search.store.impl.FSDirectoryProvider</prop>
28
              <prop key="hibernate.search.default.indexBase">${eu.etaxonomy.cdm.search.index.path}</prop><!-- set in applicationContext.xml -->
29
              <!-- 
30
                  Using the hibernate.event.merge.entity_copy_observer is a bit risky, 
31
                  see https://hibernate.atlassian.net/browse/HHH-9106 and 
32
                  https://dev.e-taxonomy.eu/redmine/issues/6687 
33
              -->
34
              <!-- <prop key="hibernate.event.merge.entity_copy_observer">allow</prop> -->
35

    
36
              <!-- disabling hibernate search for testing (speed up and lesser heap usage)
37
              <prop key="hibernate.search.autoregister_listeners">false</prop>
38
              -->
39

    
40
            </props>
41
        </property>
42
    </bean>
43
</beans>
    (1-1/1)