Changeset 1144


Ignore:
Timestamp:
09/27/11 23:30:04 (20 months ago)
Author:
philsmart
Message:
 
Location:
raptor-mua/trunk/src/main
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • raptor-mua/trunk/src/main/conf-default/mua-core.xml

    r1040 r1144  
    225225        <!-- Create the storage engine and entry handler --> 
    226226        <bean name="storageEngine" class="uk.ac.cardiff.raptor.store.StorageEngine"> 
    227         <property name="entryHandler"><ref bean="persistantEntryHandler"/></property> 
     227        <property name="entryHandler"><ref bean="persistantEventHandler"/></property> 
    228228        <property name="attributeAssociationEngine"><ref bean="attributeAssociationEngine"></ref></property> 
    229229        </bean> 
     
    231231 
    232232 
    233         <bean name="persistantEntryHandler" class="uk.ac.cardiff.raptor.store.impl.PersistantEventHandler"> 
     233        <bean name="persistantEventHandler" class="uk.ac.cardiff.raptor.store.impl.PersistantEventHandler"> 
    234234                <constructor-arg index="0"><ref bean="dataConnectionImpl"></ref></constructor-arg> 
    235235        </bean> 
  • raptor-mua/trunk/src/main/config/database.xml

    r1050 r1144  
    1818                class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
    1919                <property name="dataSource"> 
    20                         <ref local="muac3p0DataSource" /> 
     20                        <ref local="muac3p0DataSourceMySQL" /> 
    2121                </property> 
    2222                <property name="hibernateProperties"> 
    2323                        <props> 
    24                                    <prop key="hibernate.dialect"> org.hibernate.dialect.PostgreSQLDialect</prop> 
     24                                 <!--  <prop key="hibernate.dialect"> org.hibernate.dialect.PostgreSQLDialect</prop>--> 
    2525                             <!--<prop key="hibernate.dialect"> org.hibernate.dialect.HSQLDialect</prop>--> 
    26                  <!-- <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect</prop> --> 
    27                                 <prop key="hibernate.show_sql">false</prop> 
     26                 <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect</prop> 
     27                                <prop key="hibernate.show_sql">true</prop> 
    2828                                <prop key="hibernate.hbm2ddl.auto">update</prop> 
    2929                        </props> 
  • raptor-mua/trunk/src/main/config/mua-core.xml

    r1040 r1144  
    222222        <!-- Create the storage engine and entry handler --> 
    223223        <bean name="storageEngine" class="uk.ac.cardiff.raptor.store.StorageEngine"> 
    224         <property name="entryHandler"><ref bean="persistantEntryHandler"/></property> 
     224        <property name="entryHandler"><ref bean="persistantEventHandler"/></property> 
    225225        <property name="attributeAssociationEngine"><ref bean="attributeAssociationEngine"></ref></property> 
    226226        </bean> 
     
    228228 
    229229 
    230         <bean name="persistantEntryHandler" class="uk.ac.cardiff.raptor.store.impl.PersistantEventHandler"> 
     230        <bean name="persistantEventHandler" class="uk.ac.cardiff.raptor.store.impl.PersistantEventHandler"> 
    231231                <constructor-arg index="0"><ref bean="dataConnectionImpl"></ref></constructor-arg> 
     232        <!-- <property name="optimiseCountQueries"><value>true</value></property> 
     233        <property name="countClassNames"> 
     234            <list> 
     235                <value>ShibbolethIdpAuthenticationEvent</value> 
     236                <value>EzproxyAuthenticationEvent</value> 
     237            </list> 
     238        </property> --> 
    232239        </bean> 
    233240 
Note: See TracChangeset for help on using the changeset viewer.