1
vote
0answers
33 views

Java variable across multiple include blocks - variable cannot be resolved

I have jsp page that looks something like this: MyPage.jsp <%@ include file = "/Title.jsp" %> <%@ include file = "/Header.jsp" %> <html>...</html> In Title.jsp there is a ...
1
vote
1answer
37 views

CSS styles and Jquery do not get applied to jsp:include file [closed]

I am using eclipse and Tomcat 7. I have an index.jsp page. In the index.jsp file, I include login.jsp file using jsp:include tag. when I first run the application, the page gets rendered as ...
0
votes
2answers
41 views

JSP Recursive Import

I have a master JSP file that I want to import a recursive set of matching files from my web app into (they are mustache templates). I want to do something like this: <jsp:include ...
0
votes
0answers
28 views

How to avoid recursive and multiple include directive in JSP?

I have 4 jsp files and 1 js file: index.jsp, connect.jsp, load1.jsp, load2.jsp, and function.js. Please see codes below to understand the relationship between them. index.jsp <%@include file = ...
2
votes
1answer
75 views

JSP - Pass a variable to servlet

How can i pass the value=x in to the servlet from the JSP? I searched for many related questions but could not get my answer. Here x is a variable. <html> <body> <%@ page ...
2
votes
2answers
114 views

How to include resources in JSP and not to overhead service-method?

I am working on a highload project using JSP with a great amount of includes of other resources on pages (jsp, jspf). It is known that there are 2 ways to use include in JSP: static - <%@include ...
0
votes
0answers
51 views

How can you use the same Java Bean in a main JSP and its included .JSPs?

So I'm working on a .jsp page (let's call it "Main") that uses a couple of Java Beans that are defined here. In this Main page, I have an IF/ELSE statement in my Main jsp that will include an ...
0
votes
1answer
95 views

possible ways to include a tag file (jstl custom tag) into jsp

Are there other possible ways to include a tag file (jstl custom tag) into a jsp file than the one via .tld file? is it possible to use the include mechanism? <jsp:include page="bla.tagx"/>
8
votes
4answers
1k views

What's the difference between including files with JSP include directive, JSP include action and using JSP Tag Files?

It seems that there are two methods for templating with JSP. Including files with one of these statements <%@ include file="foo.html" %> <jsp:include page="foo.html" /> or using JSP ...
0
votes
1answer
295 views

Include JSP file under WEB-INF folder

is any way how to include JSP file from local stored folder, under the WEB-INF? I have in my config.properties defined absolute path ${externalFolder} to folder which contains external jsp files, ...
0
votes
1answer
116 views

jsp function tag to replace '

Here is my code, css/index.jsp: <%@include file="/WEB-INF/common/css/common.jsp" %> <style type="text/css"> body{background: #ffffff url('<c:url ...
0
votes
1answer
165 views

Spring JSP CSS referencing issues

My team had all ready created a project in spring framework and running successfully. Now i decided to make it run even faster. Existing project: My developers do their best and created dynamically ...
0
votes
1answer
218 views

JSP include page dynamically in looping

I try to include page in JSP with out.println() inside <% ... %>, but it doesn't include successfully. I must use <% ... %> because some restrictions such as looping. Does anybody have ...
0
votes
2answers
139 views

include a JSP page in a Facelets page

How can I include a JSP page in a Facelets page? mypage.xhtml <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html"> <h:head> <meta ...
2
votes
1answer
143 views

Dynamically compile and include JSP(X)s outside Web Context Root

I have a web application heavily using jspx-files and jsp:include-includes which is deployed from the same jar to several hundred contexts in tomcat. Currently we can only modifying the layout of each ...
0
votes
1answer
137 views

JSP including page using parameters

My problem is simple, so should the solution. :P I'm have two files. Index.jsp <% String title = "Homepage"; String desc = "...'"; String root = "."; String include = "content-index.jsp"; ...
0
votes
2answers
126 views

Accessing Struts2 Properties in Included JSPs

I want to access Struts2 Action bean properties in included jsp files of my main jsp Main.jsp [where I can access Action Bean] <s:if test="%{assignedProductBean.productCode =='NOMADIC'}"> ...
1
vote
3answers
538 views

jsp:param with Java class

I have a JSP file that includes another JSP file. The first JSP should pass an instance of a Java class (widget) to the second JSP file. This is what I have: The first JSP: <jsp:include ...
0
votes
1answer
30 views

Is it possible to make a mandatory JSP (in an include)?

I'm making a jsp(f) that requires a parameter to be set to make any sense. Therefore I want it to error if it is not provided so that developers don't make a mistake. How can I do this?
2
votes
1answer
172 views

Is it possible to jsp: include a page using its full path name?

Is something like <jsp:include page="C:/Documents and Settings/admin/My Documentslibrary/example.jsp"></jsp:include> possible? Thanks.
0
votes
2answers
1k views

How should I include other jsp pages in a jsp page correctly?

I am now trying to make a small website with jsp, just like most index pages, the index page of my website will include some part: The top part(contain a logo and a menu), the main part, the bottom ...
0
votes
0answers
296 views

JSP: Implementing standard HTML Header/Footer block/masterpage

Ok, this is another JSP newbie question. I'm trying to implement some kind of MasterPage for my jsp pages. For example: default.jsp: <%@ page language="java" contentType="text/html; ...
1
vote
1answer
1k views

JSP Processing instruction not closed

I tried to include an HTML file to my JSP but I eclipse show'd this error The included file <%@include file="includes/head.html" %> And the error Processing instruction not closed And ...
1
vote
1answer
3k views

<%@ page pageEncoding=“UTF-8”%> ignored when included from another jsp

I have code (now in github) like : my.jsp (a generic jsp - all my jspS follow this pattern more or less) : <%@ include file="include/top.jsp" %> <title>THE TITLE</title> <%@ ...
2
votes
3answers
157 views

How to include a Facelets file in a JSP file?

I have a JSP page main.jsp and in that page I want to include a Facelets page menu.xhtml. How can I achieve this? I have searched a lot and there does not seem to be any way.
0
votes
1answer
2k views

How to include a file in Javascript and Jsp?

Ok,i know in Php you can use include for a Php file...for example... include("array.php"); Is there a way to do this in Javascript and Jsp? From what i read i cant use for example ...
1
vote
1answer
40 views

how to include a page in WEB_INF from a different directory

This is my folder Structure I want to include the page "common/tray.jsp" form "plan/add_edit.jsp" page I have done <!-- Tray --> <%@ include file="/common/tray.jsp" %> ...
0
votes
2answers
221 views

Set attribute before include jsp

consider this situation: <!-- main.jsp --> <% for (int i = 0; i < 10; i++) { %> <% request.setAttribute("i", new Integer(i)); %> <jsp:include page="template.jsp" /> ...
3
votes
1answer
66 views

How to add an element to the html head in an arbitrary sub-JSP page

So i have my main JSP page which includes a number of sub-JSP pages hierarchically. Some of these sub=JSP pages have scripts and styles that need to be included along with them, but i want the styles ...
0
votes
0answers
60 views

Heroku jsp includes not working

I have a Spring MVC app that I am deploying on Heroku. I have a bunch of jsp files, but one main index.jsp that has things like <%@ include file="include/common-js-head.jsp" %> However, in Heroku, ...
1
vote
1answer
139 views

How to call a JSP tag within a POJO

I have a Java Bean used in a <jsp:useBean id="controller" class="the.Pojo" scope="page"/> I put in this Pojo things that I need: like the request, the response .. so I can include another ...
1
vote
2answers
197 views

Include header.jsp only for Logged in Users only

I have index.jsp , i need to include a header.jsp in that.The problem is - header.jsp contains dynamic menu (for loggedIn users and for non-loggedIn users) i can check if user is logged in or not ...
0
votes
1answer
374 views

Including jsp in jsf page

Below is what I have in JSP page example.jsp <html> <body> //report using mysql connection </body> </html> Now I want to include this page in one of my jsf ...
1
vote
1answer
210 views

How can a JSP fragment include its dependencies into the parent's head tag?

I have a JSP file called header.jsp which looks like this. <%@ taglib prefix="c" uri="/c" %> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> <!DOCTYPE html> ...
0
votes
0answers
68 views

How can I translate jsp:param within jsp:include to Java with RequestDispatcher.include

I want to translate <jsp:include page="xxx.jsp"> <jsp:param name="x" value="0"/> </jsp:include> to Java, like: RequestDispatcher rd = request.getRequestDispatcher("xxx.jsp"); ...
0
votes
2answers
487 views

Variable in included jsp?

i have a JSP-File which includes another JSP file. In both of them I need a special variable. This is a part of the code of the JSP that includes the other JSP: <%String logged = ...
1
vote
2answers
110 views

Escaping an included jsp file

I'm working with a JSP file which includes others, but as it's used for an AJAX response the included files need to be escaped. My initial attempt was this: ...
0
votes
2answers
313 views

How to avoid redeclaring tag libraries in included JSP files?

I made myself a template for all JSPs in my webapp that keeps things very simple: <%@ include file="header.jsp" %> <!-- Put unique content here --> <%@ include file="footer.jsp" ...
0
votes
1answer
782 views

How to include/import a JSP page inside a Facelets page?

Does somebody know if it is possible to include/import a JSP page inside a Facelets page? After several unsuccessful tries with <c:import>, <jsp:include>, <ui:include> and some ...
1
vote
2answers
297 views

How to include a JSP file in a Facelets file?

How can I include a .jsp file into a facelet?
1
vote
0answers
387 views

jsp:include position issue

i have a problem with jsp dynamically inclusion. In other words i have one master jsp for templating, it includes two others jsp. The included jsp contains SAP hbj taglibrary, the master JSP is pure ...
0
votes
1answer
716 views

include GWT in jsp

I need to include a GWT file into JSP page. The GWT resource is the form of : GWTPage.jsp#browser-based_bookmark I've tried using jsp:include and RequestDispatcher, for jsp-include, it says ...
0
votes
2answers
474 views

How to execute and include a Java API from a WebAp project

This is similar to the problems at java parameter in jsp:include and Eclipse project from Ant build file for a JAVA web project on SVN doesn't import JSP files I am looking to execute a Java ...
1
vote
1answer
2k views

JSP include HTML body overrides HTML BODY tag that is included?

I'm facing confusion with how JSP include tag works. What's happening is that the base page's body tag has id attribute of included JSP. base.jsp <%@page contentType="text/html" ...
0
votes
1answer
211 views

Included JSP page submit not triggering action button

I am trying to include another JSP page that has button actions. The include works fine but when I click on the button the page refreshes but it does not trigger my action listener. If I hit the ...
1
vote
1answer
205 views

Including subpages by GET parameter in JSP

I'm learning JSP and I want to include subpage (on div named "content") based on GET method generated by menu link. <div id="menu"> <a href="/index.jsp?page=1">Subpage 2</a> ...
0
votes
1answer
400 views

Include a single jsp file multiple times

Ok, so basically I have a jspf template file with a backing FragmentBean that I want to include multiple times in the same request page scope. When I include this template I pass it a different ...
2
votes
2answers
333 views

Is it possible to have a dynamic path as part of a jsp include

I have a include file in my jsp <%@ include file = "includes/testinclude1.jsp" %> Test Include1 contains struts tags, and therefore needs to be pulled in and compiled. Which works ok. Is ...
0
votes
1answer
76 views

Is there a way to load a variable page with a java <%@ include?

I would like to do something like: <%@ include file="links/"+linkFile %> Is there any way to do something like this? It's for a jsp page, but I don't want to use <jsp:include> because I ...
0
votes
1answer
100 views

Page sections JSP/JSTL

I'm used to work in PHP. There I would make a Page Class with methods for writing menus headers and footers and call those methods from my script. This way was able to easily change the content of the ...

1 2