The webcontent tag has no wiki summary.
3
votes
1answer
95 views
Liferay, What is the used technology that is used to develop web content portlet?
In order to create web content, a web content portlet is used, so I want to know the technology behind this portlet. What was used to develop this portlet? JSP, JSF, Struts, Icefaces , or any thing ...
2
votes
4answers
5k views
How can I get real path for file in my WebContent folder?
I need to get real path for file in my WebContent directory, so that framework that I use can access that file. It only takes String file as attribute, so I need to get the real path to this file in ...
0
votes
1answer
46 views
Create A File in the WebContent Folder From Java
I wanted to know how to create a file in the WebContent folder of a dynamic web project using Java?
The basic question remaining is how to get the path of the WebContent folder.
Note: No servlet is ...
0
votes
0answers
49 views
Eclipse-plugin: How to persistently get the WebContent Path of a selected Project?
I am fetching the WebContent Path of a Dynamic Web Project using the code shown below
static IPath getWebContentRootPath(IProject project) {
if (project == null)
return null;
...
0
votes
1answer
265 views
Possible to jsp:include a jsp from another package instead of from WebContent/jsp folder?
Due to a design decision, our project contains JSP files that include other JSP files like so:
<jsp:include page="/jsp/controls/InputControl.jsp"/>
These JSP files exist under the ...