Tagged Questions
The `<jsp:include>` element allows you to include either a static or dynamic resource in a JSP page.
3
votes
4answers
950 views
what's the fundamental difference between a jsp taglib vs including a jsp page?
i have several common elements (components), that will generate some html. it seems my options are creating a taglib, or just putting that logic into a jsp page and including the jsp.
whats the ...
2
votes
1answer
59 views
unable to add a cookie included in JSP via jsp:include
Cookies are not getting added to the browser when the code adding the cookie is part of a fragment of JSP (includes.jsp) included in the primary page (main.jsp) via JSP:INCLUDE.
The code works fine ...
2
votes
1answer
205 views
Unloading/deleting or reusing already loaded javascript
I'm trying to load a jsp-file into a jQuery UI dialog http://jqueryui.com/demos/dialog/. The jsp contains a fullCalendar http://arshaw.com/fullcalendar/ calendar. The console calls for calLoader.jsp ...
2
votes
2answers
396 views
response.sendRedirect() from jsp:include being ignored?
I've got a jsp file, which includes another jsp file to check some values and such:
<jsp:include page="setup.jsp" />
Inside the setup.jsp I've got some conditional code which determines if ...
2
votes
2answers
87 views
Are jsp standard actions used anymore?
This is a quick question for all of you writing jsps in production. Do you use jsp standard actions and why? What are maybe some of common use cases?
I ask because there are so many taglibs out there ...
2
votes
1answer
364 views
JSP:Include not being called on forwarding page using doPost requestDispatcher
I am currently writing an web application where you need to log in, using username and password. The next step in the process is to select a Project in which the logged in user is involved.
Once ...
2
votes
2answers
252 views
Maximum <jsp:include> depth
We're using an application build using Weblogic Workshop 10.3 and running on weblogic server 10.3. I'm trying to display a tree of data using recursive calls to a jsp page using <jsp:include>. ...
2
votes
2answers
243 views
php's Header equivalent in JSP
in php i used to authenticate whether a user was logged in or not by checking the session for a member id, if set ok, else the page would be redirected via Header to the login page. this auth script ...
2
votes
1answer
158 views
How to import constants in a JSP page
Are there any better ways to use constants in a JSP than:
<%@ page import="static package.Interface.NAME"%>
Is there any downside to using these (outside of mixing code/content)?
Thanks!
2
votes
1answer
87 views
How to determine which JSP pages are being rendered?
I'm working on a legacy application that is using simple JSPs that are nested using <jsp:include>.
No frameworks are being used - just JSP Servlets and filters.
Can anyone suggest a way to ...
2
votes
4answers
704 views
Including JSP multiple HEAD section
HI
I would like to include a jsp page into another jsp. Let's say that I have master.jsp that is including slave.jsp.
Since slave.jsp has its own set of section for dealing with Javascript and CSS. ...
1
vote
1answer
35 views
In a lot of JSP/Servlet app examples, why is the .inc extension used instead of .jsp for include?
In a lot of JSP/Servlet app examples that I saw, when the app includes a resource in a JSP through the directive or action include, then the file included had an .inc extension. Why is that? Why we do ...
1
vote
1answer
53 views
What's the equivalent of C++'s “#ifdef #endif” macro in JSP?
What's the equivalent of C++'s #ifdef #endif macro in JSP?
Is there such thing in JSP?
I want to conditionally include files in one JSP or another.
Reason for doing that is because I have a nested ...
1
vote
3answers
94 views
Can i import my own jsp page into another jsp page..?
i have prepared a a static html page using netbeans.
Can i import that page into another page so as to not re-write the code again n again and then make the respective changes.
1
vote
2answers
397 views
Why is my included JSP not found?
The main.jsp is location in this directory of the web app:
/WEB-INF/jsps/foo/section/main.jsp
main.jsp contains the following line of code to try to include the code contained in mainInclude.jsp ...
1
vote
1answer
39 views
Why is the aliased Model object not accessible from a jsp include?
I have a Model object ("foo") added to the ModelMap in the MVC controller:
Spring MVC Controller:
Foo foo = new Foo("FooName");
model.addAttribute("foo", foo);
return "foo";
I can call properties ...
1
vote
1answer
153 views
Why does jsp:include (sometimes) cause StackOverflowErrors on Google App Engine?
I am experiencing StackOverflowErrors with all requests to the latest version of an application on GAE. I tracked down Issue #3588 but that was closed because the reporter blamed it on a third-party ...
1
vote
1answer
105 views
SSI vs JSP difference?
What's the difference in using SSI include & JSP include?
e.g.
<!--#include virtual="page.jsp" -->
and
<%@ include file="page.jsp" %>
1
vote
1answer
264 views
Include file from dynamic property value
I have a project in Java thgat needs to use;
<%@include file="content.jsp" %>
to include a file into the current jsp page.
However, I now need the content.jsp to be dynamic.
How can I ...
1
vote
1answer
222 views
JSF Menus not getting displayed
I am having menu.jsp the contents are as follows
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t" %>
<%@ ...
1
vote
1answer
385 views
JSF include problem menu related
I am trying to implement menus in JSF which I was able to do it.
menucontents.jsp:
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib ...
1
vote
2answers
928 views
Ajax request problem: error 80020101
I have a request which returns a jsp page. But the fact is, the jsp includes jsp:include in it(it calls another jsp file in it) and ie gives the error 80020101.
Any ideas?
Thanks
1
vote
1answer
169 views
graphics are not shown on jsp
in my application all jsp pages in jsps folder
i give the path in index.jsp:<%
response.sendRedirect(response.encodeRedirectURL("/Projectname/jsps/main.jsp"));
%>
although main.jsp is show but ...
1
vote
1answer
89 views
Should taglibs be declared in included JSP files?
I have several JSP files that are included into other JSP pages. Some of these use taglibs declared in the pages that include them.
Should these taglibs be declared in the included files as well? ...
1
vote
1answer
556 views
JSP - Can I use <jsp:attribute> inside <c:if>? Exception: “Must use jsp:body to specify tag body”
I have the following inside a JSP:
<c:if test="${true}">
<jsp:attribute name="extraInlineComplianceJavascript">
window.isSummaryComplianceLinkVisible = ...
1
vote
1answer
653 views
JSP request parameter is returning null on a jsp include with Weblogic
I am having trouble with the jsp:include tag. I have code like the following:
<jsp:include page="./Address.jsp">
<jsp:param value="30" name="tabIndex"/>
<jsp:param value="true" ...
1
vote
1answer
653 views
Get filename of source JSP file (even if included)
I am trying to do some debugging of JSP files that include multiple levels of nested includes.
e.g.
foo.jsp
<%@ include file="bar.jsp"%>
bar.jsp
<%@ include file="baz.jsp"%>
...
1
vote
2answers
276 views
Simple JSP website
I'm looking for help/advise with creating simple JSP website using equivalent of PHP include+switch function.
The goal is that I want be able to switch between multiple JSP include pages in one main ...
1
vote
1answer
534 views
Setting a default value to a param in s:include
I am writing a small widget in struts which I want to include. The height of the widget should be auto unless I pass in a param of height. For example:
# Example 1:
<s:include ...
1
vote
5answers
1k views
How do I include a header into my site that is hosted externally?
We are hosting a site for a client and they want us to include the header they have on their server into the pages we are hosting. So whenever they change it, it will automatically change on our ...
1
vote
2answers
767 views
parameterised jsp:includes of stripes actions?
I've been trying to solve this, and have been getting stuck, so I thought I'd ask.
Imagine two ActionBeans, A and B.
A.jsp has this section in it:
...
<jsp:include page="/B.action">
...
0
votes
0answers
19 views
Struts Passing Static Class Name Through Include
I'm attempting to reduce code by creating a include for a common block of code I have bewtween two JSPs. However, I'm having the hardest time trying to figure out how to pass this include parameters ...
0
votes
1answer
56 views
JSP out.flush() issue
I had a weird problem today. I have a head.jsp ( ending with out.flush ) which is being included by other pages. most of the pages doesn't have problem with this out.flush(); but one of my page is ...
0
votes
1answer
125 views
Passing c:forEach variable to a jsp:include
I am trying to access some JSTL variables that were set on a JSTL for-loop in an include.
Example:
<c:forEach items="${cart.entries}" var="entry">
<jsp:include ...
0
votes
1answer
86 views
how to check that jsp file is included or not in another jsp file?
see you all know about including file in a jsp...
i have 2 files
one.jsp
two.jsp
in two.jsp i have below given code
Long something = 0;
in one.jsp code is
<%@include file='two.jsp'%>
...
0
votes
2answers
75 views
Including lots of jspf files in a jsp file causes high memory usage
We have a web page, running on a glassfish server. In our jsp file we have a lot of includes like the one below.
<jsp:directive.include file="johndoe/foobar.jspf"/>
These files are included ...
0
votes
1answer
38 views
java parameter in jsp:include
I wanted to know if I can pass a java variable to a . I tried to do something like this inside a jsp file:
<% String folder = request.getParameter("something"); %>
<jsp:include ...
0
votes
1answer
108 views
How do you access an object by reference (not by value) in a jsp:include file?
a little back story:
I am working on a file that got to be very large, eventually resulting in the following error:
The code of method _jspService(HttpServletRequest, HttpServletResponse) is ...
0
votes
0answers
7 views
How to debug Invalid Jsp Directives?
I have lot of jsp's that I am hoping to upgrade to tags, is there any decent tool I could use to easily debug and fix the issues??
0
votes
1answer
100 views
Tomcat not conforming to Servlet spec 2.4+ in regards to jsp:include
After three days of scourging the internet I am about to lose my mind... Any help would be greatly greatly appreciated...
I have a filter in place for validating CSRF tokens. I only wish to validate ...
0
votes
1answer
184 views
jsp:include making the divs mis-aligned in ie7
I have a webpage in which I am using 2 jsp:include directives. Basically one is the header and other is the footer. The headers and footers are aligned correctly. But the central body of the main page ...
0
votes
2answers
138 views
How to use JSP tags in JSP fragment?
Can anyone tell me if you can use JSP tags like this:
<c:if test="true" > ... </c:if>
In fragments of JSPs with a .jspf extension which are embedded into JSPs using include, e.g.:
...
0
votes
1answer
29 views
0
votes
1answer
295 views
Include a CSS file as inline style in a JSP
I have a CSS file ("style.css") that I want to embed as inline CSS in a JSP. How can this be done?
I have tried the following, but the CSS file is not imported:
<style>
<jsp:include ...
0
votes
0answers
136 views
JSP Precompilation - variable can not be resolved to a type
I have many jsp pages and I want to compile them. But It raises error while compiling and reason is:
Most of the jsps(parent) include other jsps(child). Let's assume I introduce a variable in the ...
0
votes
2answers
593 views
jQuery.load() a JSP into a div
I am looking for some info on JSP imports. I currently have a main.jsp. A jsp is loaded into a div using jQuery upon user selection of of an item. then inside of that div, a modal dialog is opened ...
0
votes
2answers
205 views
Can jsp:include pages pass through filters
I have a jsp page in which includes a jsp page through jsp:include.
Now the question is does the request for the included jsp pass through the filter?
following is my filter mapping in web.xml
...
0
votes
2answers
98 views
How to get include url in Filter
In my JSP page index.jsp I have
<c:import url="/hello.jsp?name=user" />
I have a filter which is mapped to hello.jsp, how do I get the include url in this case /hello.jsp?name=user. If I try ...
0
votes
1answer
259 views
From an included JSP, how do we access a variable declared in another included JSP (same parent)
I have a parent JSP with code that looks like
<jsp:include page='a.jsp' flush='true'/>
<jsp:include page='b.jsp' flush='true'/>
<jsp:include page='c.jsp' flush='true'/>
a.jsp has ...
0
votes
3answers
553 views
why jsp:include parameters not visible
I have exactly the same basic question about accessing jsp:param values as this poster; following his example exactly does not work for me. The parameters passed in via jsp:include don't seem to show ...