Forums de discussion

Liferay 6.2 layout.parallel.render.enable ????

thumbnail
William Gosse, modifié il y a 7 années.

Liferay 6.2 layout.parallel.render.enable ????

Liferay Master Publications: 533 Date d'inscription: 04/07/10 Publications récentes
Is layout.parallel.render.enable property only available for use on Tomcat?
thumbnail
David H Nebinger, modifié il y a 7 années.

RE: Liferay 6.2 layout.parallel.render.enable ????

Liferay Legend Publications: 14919 Date d'inscription: 02/09/06 Publications récentes
Yes.
thumbnail
William Gosse, modifié il y a 7 années.

RE: Liferay 6.2 layout.parallel.render.enable ????

Liferay Master Publications: 533 Date d'inscription: 04/07/10 Publications récentes
I'm using JBoss which uses Tomcat so I'm guessing it would still be viable.
thumbnail
David H Nebinger, modifié il y a 7 années.

RE: Liferay 6.2 layout.parallel.render.enable ????

Liferay Legend Publications: 14919 Date d'inscription: 02/09/06 Publications récentes
Well the code I looked at had a specific check for tomcat:

		if (PropsValues.LAYOUT_PARALLEL_RENDER_ENABLE &&
			ServerDetector.isTomcat() && !PropsValues.TCK_URL) {


And ServerDetector specifically checks for Jboss before it checks for tomcat. I'm guessing it won't be enabled, even under jboss.
thumbnail
William Gosse, modifié il y a 7 années.

RE: Liferay 6.2 layout.parallel.render.enable ???? (Réponse)

Liferay Master Publications: 533 Date d'inscription: 04/07/10 Publications récentes
Ugh! Thanks for checking.