留言板

liferay-util:include

thumbnail
Kamesh Sampath,修改在12 年前。

liferay-util:include

Regular Member 帖子: 158 加入日期: 10-5-27 最近的帖子
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,修改在12 年前。

RE: liferay-util:include

Liferay Legend 帖子: 1191 加入日期: 10-3-10 最近的帖子
&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,修改在12 年前。

RE: liferay-util:include

Regular Member 帖子: 158 加入日期: 10-5-27 最近的帖子
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,修改在11 年前。

RE: liferay-util:include

Regular Member 帖子: 180 加入日期: 07-4-5 最近的帖子
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,修改在11 年前。

RE: liferay-util:include

Regular Member 帖子: 158 加入日期: 10-5-27 最近的帖子
thanks so much faud, we need this entry to make it work emoticon ... and actually it worked .
Uday Reddy,修改在11 年前。

RE: liferay-util:include

New Member 帖子: 14 加入日期: 11-11-8 最近的帖子
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,修改在11 年前。

RE: liferay-util:include

Expert 帖子: 492 加入日期: 12-9-17 最近的帖子
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,修改在11 年前。

RE: liferay-util:include

Liferay Master 帖子: 722 加入日期: 07-12-19 最近的帖子
Try this:


<liferay-util:include page="/next.jsp" servletContext="<%=this.getServletContext() %>">
Roberto Díaz,修改在11 年前。

RE: liferay-util:include

Junior Member 帖子: 40 加入日期: 08-6-26 最近的帖子
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,修改在11 年前。

RE: liferay-util:include

New Member 帖子: 4 加入日期: 13-3-7 最近的帖子
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,修改在7 年前。

RE: liferay-util:include

Junior Member 帖子: 58 加入日期: 12-10-28 最近的帖子
I do that in liferay 6.2 but it is not working.
please help me.
thumbnail
delang j,修改在7 年前。

RE: liferay-util:include

Expert 帖子: 252 加入日期: 08-7-14 最近的帖子
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