Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleuportal-war/src/main/resources/properties/contexts/persistenceContext.xml

 <bean id="fragmentDefinitionDao" class="org.jasig.portal.layout.dlm.FragmentDefinitionDao">
</bean>
 

...

Modify dlmConfigurationLoader bean, replacing:

Code Block
titleuportal-war/src/main/resources/properties/contexts/layoutContext.xml
<bean id="dlmConfigurationLoader" class="org.jasig.portal.layout.dlm.LegacyConfigurationLoader">
 <property name="configurationFile" value="classpath:/properties/dlm.xml" />
</bean> 

with

Code Block
titleuportal-war/src/main/resources/properties/contexts/layoutContext.xml
 <bean id="dlmConfigurationLoader" class="org.jasig.portal.layout.dlm.RDBMConfigurationLoader">
    <property name="configurationFile" value="classpath:/properties/dlm.xml" />
    <property name="fragmentDao" ref="fragmentDefinitionDao" />
</bean>
 

...