Creating Model Listeners

Model Listeners implement the ModelListener interface. They are used to listen for persistence events on models and do something in response (either before or after the event).

Model listeners are designed to perform lightweight actions in response to a create, remove, or update attempt on an entity’s database table or a mapping table (for example, users_roles). Here are some supported use cases:

  • Audit Listener: In a separate database, record information about updates to an entity’s database table.
  • Cache Clearing Listener: Clear caches that you’ve added to improve the performance of custom code.
  • Validation Listener: Perform additional validation on a model’s attribute values before they are persisted to the database.
  • Entity Update Listener: Do some additional processing when an entity table is updated. For example, notify users when changes are made to their account.

There are also use cases that are not recommended, since they’re likely to break unpredictably and give you headaches:

  • Setting a model’s attributes in an onBeforeUpdate call. If some other database table has already been updated with the values before your model listener is invoked, your database gets out of sync. To change how an entity’s attributes are set, consider using a service wrapper instead.
  • Wrapping a model. Model listeners are not called when fetching records from the database.
  • Creating worker threads to do parallel processing and querying data you updated via your listener. Model listeners are called before the database transaction is complete (even the onAfter... methods), so the queries could be executed before the database transaction completes.

If there is no existing listener on the model, your model listener is the only one that runs. However, there can be multiple listeners on a single model, and the order in which the listeners run cannot be controlled.

You can create a model listener in a module by doing two simple things:

  • Implement ModelListener
  • Register the service in Liferay’s OSGi runtime

Creating a Model Listener Class

Create a -ModelListener class that extends the BaseModelListener class.

package ...;

import ...;

public class CustomEntityListener extends BaseModelListener<CustomEntity> {

    // Override one or more methods from the ModelListener interface.
    
}

In the body of the class, override any methods from the ModelListener interface. The available methods are listed and described at the end of this article.

In your model listener class, the parameterized type (for example, CustomEntity in the snippet above) tells the listener’s ServiceTrackerCustomizer which model class to register the listener against.

Register the Model Listener Service

Register the service with Liferay’s OSGi runtime for immediate activation. If using Declarative Services, set service= ModelListener.class and immediate=true in the Component.

@Component(
    immediate = true,
    service = ModelListener.class
)

That’s all there is to preparing a model listener. Now learn what model events you can respond to.

Listening For Persistence Events

The ModelListener interface provides lots of opportunity to listen for model events:

  • onAfterAddAssociation: If there’s an association between two models (if they have a mapping table), use this method to do something after an association record is added.
  • onAfterCreate: Use this method to do something after the persistence layer’s create method is called.
  • onAfterRemove: Use this method to do something after the persistence layer’s remove method is called.
  • onAfterRemoveAssociation: If there’s an association between two models (if they have a mapping table), do something after an association record is removed.
  • onAfterUpdate: Use this method to do something after the persistence layer’s update method is called.
  • onBeforeAddAssociation: If there’s an association between two models (if they have a mapping table), do something before an addition to the mapping table.
  • onBeforeCreate: Use this method to do something before the persistence layer’s create method is called.
  • onBeforeRemove: Use this method to do something before the persistence layer’s remove method is called.
  • onBeforeRemoveAssociation: If there’s an association between two models (if they have a mapping table), do something before a removal from the mapping table.
  • onBeforeUpdate: Use this method to do something before the persistence layer’s update method is called.

Look in Liferay source file portal-kernel/src/com/liferay/portal/kernel/service/persistence/impl/BasePersistenceImpl.java, particularly the remove and update methods, and you’ll see how model listeners are accounted for before (for the onBefore... case) and after (for the onAfter... case) the model persistence event.

Now that you know how to create model listeners, keep in mind that they’re useful as standalone projects or inside of your application. If your application needs to do something (like add a custom entity) every time a User is added in Liferay, you can include the model listener inside your application.

Upgrading Model Listener Hooks

Service Builder

Service Builder Persistence

« Overriding lpkg filesDynamic Includes »
Este artigo foi útil?
Utilizadores que acharam útil: 0 de 0