I want to run some code as soon as my plugin (portlet, hook or theme) is available in Liferay.
I can't find anything like a startup listener in liferay-plugin-package.xml
, liferay-portlet.xml
, liferay-hook.xml
or liferay-look-and-feel.xml
.
If you've got a portlet in your plugin, you can run the code in Portlet.init(PortletConfig)
.
But this is not always possible, because
In that case you have two other options:
Create a startup action which is called for every portal instance (see the answer of gevatterjan). This is the best solution if you need to run code for every portal instance.
Or you use a combination of ServletContextListener
and PortalLifecycle
which is started once when the plugin is available. This is the best solution if you want to run only once, e.g. to create a scheduler or to replace Liferay functions that are not covered by liferay-hook.xml
resp. portal.properties
.
@WebListener
public class MyStartupListener implements ServletContextListener, PortalLifecycle {
@Override
public void contextInitialized(final ServletContextEvent sce) {
// Wait until the portal is ready
PortalLifecycleUtil.register(this, PortalLifecycle.METHOD_INIT);
}
@Override
public void portalInit() {
// Here comes our initialization code
...
}
@Override
public void contextDestroyed(final ServletContextEvent event) {
// Here comes our uninitialization code, if any
...
}
@Override
public void portalDestroy() {
// Ignore
}
}
You can call any Liferay functions, but be careful:
Your thread is not connected to any request - there is no current portal instance (Company
), site (Group
), page (Layout
) or user. You can find all of these using the appropriate *ServiceLocalUtil
functions. And for some actions you need to set these value for the thread in CompanyThreadLocal
, PricipalThreadLocal
and PermissionThreadLocal
.
There is another way. You could utilize the StartupAction. It is merely an Event, which get's triggered on every startup of a plugin. This method will only get triggered once on a server start or deploy. Recognize, that the doRun method get's a String array of companyIds as an argument. A companyId is representing a portal instance (the Liferay internal one. Not another application server.)
For instance, I have a portlet where I rely on some custom fields to exist. So I have this neat little class:
And the SetupExpandoAction is:
In your liferay-hook.xml file, you do the following:
And in portal.properties you add this line:
remember to substitute the class names ;)