Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.0.0, 3.0.1
-
None
Description
Currently the ChatRoomDemo HelloWorldImage.java class adds the PortletHub as a dependency in a header method that gets executed on every request:
HelloWorldImage.java
@HeaderMethod(portletNames="*") public void header(HeaderRequest req, HeaderResponse resp) throws IOException { resp.addDependency("PortletHub", "javax.portlet", "3.0.0"); }
Performance can be improved by registering the dependency with @PortletConfiguration instead.