define fragments as database enities
As an alternative to defining DLM fragments in dlm.xml, portal administrators may elect to enable the RDBMConfigurationLoader
, which loads fragment definitions from the database via Hibernate and JPA. The major advantage of this approach is that it allows fragments to be added, removed, or change their audiences without a portal restart.
RDBMConfigurationLoader
can be turned on by modifying persistenceContext.xml and layoutContext.xml
Warning
Once you make this change, DLM will no longer read fragments from dlm.xml; you must define all your fragments in the database.
persistenceContext.xml
Uncomment fragmentDefinitionDao
bean:
<bean id="fragmentDefinitionDao" class="org.jasig.portal.layout.dlm.FragmentDefinitionDao"> </bean>
layoutContext.xml
Modify dlmConfigurationLoader
bean:
<bean id="dlmConfigurationLoader" class="org.jasig.portal.layout.dlm.RDBMConfigurationLoader"> <property name="configurationFile" value="classpath:/properties/dlm.xml" /> <property name="fragmentDao" ref="fragmentDefinitionDao" /> </bean>
Importing Fragment Definitions
Now that you've enabled the RDBMConfigurationLoader
, you'll need a way to get fragment definitions into the database. Import/Export provides support for these entities.
Use the following command to import a directory that contains .fragment-definition files:
>ant crn-import -Ddir<path.to.frag-def.dir>
The .fragment-definition files support the same XML syntax as dlm.xml
Example fragment-definition File
<fragment-definition xmlns:dlm="http://org.jasig.portal.layout.dlm.config" script="classpath://org/jasig/portal/io/import-fragment-definition_v3-1.crn"> <dlm:fragment name='Guests' ownerID='guest-lo' precedence='20'> <dlm:audience evaluatorFactory='org.jasig.portal.layout.dlm.providers.GuestUserEvaluatorFactory'/> </dlm:fragment> </fragment-definition>