Tuesday, January 28, 2014

Resolving java.lang.ArrayIndexOutOfBoundsException: 0 on startup action in Liferay

So Liferay has a great system for creating global startup actions.  You configure the portal-ext.properties to run a class derived from AppStartupAction and Liferay runs it during startup.

I found a problem however...

20:27:35,500 ERROR [pool-2-thread-1][MainServlet:325] java.lang.ArrayIndexOutOfBoundsException: 0
java.lang.ArrayIndexOutOfBoundsException: 0
    at com.liferay.portal.util.PortalInstances._getDefaultCompanyId(PortalInstances.java:318)
    at com.liferay.portal.util.PortalInstances.getDefaultCompanyId(PortalInstances.java:82)
 ...

Strange, isn't it?  The companyId is provided by the PortalInstances class which should have been initialized, right?

The problem is that Liferay's MainServlet runs the global startup events BEFORE it initializes the PortalInstances object.  Since PortalInstances supplies the default companyId, it isn't available yet if you need it in your custom startup action.

The solution I used was to modify the MainServlet.java class to place the global startup actions right after company initialization.

1 comment:

  1. You made some good points there. I did a search on the topic and found most people will agree with your blog.
    Graphic Design Rochester NY
    Web Designing Rochester NY
    Web Development Rochester NY

    ReplyDelete