Forums de discussion

liferay-util:include

thumbnail
Kamesh Sampath, modifié il y a 12 années.

liferay-util:include

Regular Member Publications: 158 Date d'inscription: 27/05/10 Publications récentes
Hi,

Can anyone tell me the differnce between <liferay-util:include> and jsp:include/<%@include%> ?

Can I use <liferay-util:include> in my custom portlet application ?, i see that the tag is not getting processed even though i give servletContext parameter for the tag emoticon

I guess I am missing something emoticon

Also whether its advisable to use the tag in the custom jsp of portlet application ?

Thanks

Kamesh
thumbnail
jelmer kuperus, modifié il y a 12 années.

RE: liferay-util:include

Liferay Legend Publications: 1191 Date d'inscription: 10/03/10 Publications récentes
&lt;%@include%&gt;


Is the jsp include directive. The content of the file you are including is added at translation time. Eg. when the JSP file is compiled. So any code in the include is treated exactly as when had it been written inline in the jsp that does the include

&lt; jsp:include&gt;


Is the jsp include tag. The contents of the path you are including are added at request time. You can also parameterize the request that's made by nesting jsp:param elements in this tag. You can only include paths that are relative to your servlet context (eg. in your own war file)

<liferay-util:include></liferay-util:include>


Is the liferay inlude tag, afaik its kind of like jsp:include but let's you include files from other servlet contexts then your own, via it's servletContext attribute or portletId.


And then there's a bunch of others also related to including, you did not mention yet. Like <jsp:forward> and <c:import>. What you should use depends on the situation
thumbnail
Kamesh Sampath, modifié il y a 12 années.

RE: liferay-util:include

Regular Member Publications: 158 Date d'inscription: 27/05/10 Publications récentes
thanks. but then when I use the <liferay-ui:include> to include a jsp file from my portlet plugin is not working, rather no error or jsp not inlcuded. I also tried putting down the servletContext="<%=this.getServletContext()%>" not sure what is the reason.

Is anyting am missing from this point of view ?
thumbnail
Fuad Efendi, modifié il y a 11 années.

RE: liferay-util:include

Regular Member Publications: 180 Date d'inscription: 05/04/07 Publications récentes
This is super stupid, but make sure you have in portal-ext.properties

    theme.jsp.override.enabled=true


"include" tag checks this value in Liferay v.6.1.0 CE GA1...
thumbnail
Kamesh Sampath, modifié il y a 11 années.

RE: liferay-util:include

Regular Member Publications: 158 Date d'inscription: 27/05/10 Publications récentes
thanks so much faud, we need this entry to make it work emoticon ... and actually it worked .
Uday Reddy, modifié il y a 11 années.

RE: liferay-util:include

New Member Publications: 14 Date d'inscription: 08/11/11 Publications récentes
Hi

I'm using 6.0 EE version.

When i used <liferay-util:include> tag, Neighter executed the included page, nor no error on the page.

I also included the entry in portal-ext.properties file too.

Please help me in this.
thumbnail
mohammad azaruddin, modifié il y a 11 années.

RE: liferay-util:include

Expert Publications: 492 Date d'inscription: 17/09/12 Publications récentes
Even i'm facing same problem.....can anyone help me please.....i include <%@ taglib uri="http://liferay.com/tld/util" prefix="liferay-util" %> in jsp file also i enable theme.jsp.override.enabled=true in portal-ext file
Thank you
Regards
thumbnail
Gnaniyar Zubair, modifié il y a 11 années.

RE: liferay-util:include

Liferay Master Publications: 722 Date d'inscription: 19/12/07 Publications récentes
Try this:


<liferay-util:include page="/next.jsp" servletContext="<%=this.getServletContext() %>">
Roberto Díaz, modifié il y a 11 années.

RE: liferay-util:include

Junior Member Publications: 40 Date d'inscription: 26/06/08 Publications récentes
I have the same problem. I try with everything but it doesn't work. Anyone has any idea??

Thanks.

Gnaniyar Zubair:
Try this:


<liferay-util:include page="/next.jsp" servletContext="<%=this.getServletContext() %>">
thumbnail
Fabian Funkel, modifié il y a 11 années.

RE: liferay-util:include

New Member Publications: 4 Date d'inscription: 07/03/13 Publications récentes
Adding that line:

theme.jsp.override.enabled=true


to the portal-ext.properties worked for me. (Liferay 6.1.20-EE-GA2)

You have to restart the server afterwards, obviously.
thumbnail
Habib Zare, modifié il y a 7 années.

RE: liferay-util:include

Junior Member Publications: 58 Date d'inscription: 28/10/12 Publications récentes
I do that in liferay 6.2 but it is not working.
please help me.
thumbnail
delang j, modifié il y a 7 années.

RE: liferay-util:include

Expert Publications: 252 Date d'inscription: 14/07/08 Publications récentes
Habib Zare:
I do that in liferay 6.2 but it is not working.
please help me.


please look at this link.
https://web.liferay.com/community/forums/-/message_boards/message/4315190