1
vote
0answers
62 views
+100

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 ...
0
votes
2answers
42 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
2answers
61 views

Is it possible to import a group of import statements from another file in Java?

I don't believe this feature exists in Java, and probably for good reason, but occasionally I like to import static a lot of methods in multiple classes, or even import static ...
1
vote
1answer
43 views

Use files from one Java project in another project in Eclipse

I have two Java projects - MyProject and MyProjectStubs The MyProject has the bulk of the classes for the effort. The MyProjectStubs has certain "dummy" classes whose processing will be ...
2
votes
3answers
69 views

How to include a JVM in JAR file if Java is not installed on user machine?

Maybe the question sounds a bit strange... I would like to distribute my Java application. I know how to generate a jar file, but it only includes my classes. What if the user does not have java ...
2
votes
1answer
79 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
115 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 ...
1
vote
0answers
92 views

How to exclude a source file from one directory and include the same file from another directory during compilation using Maven?

In my project i use two source directory (by build-helper-maven-plugin). I have a class that present in both of them. So, when i try to run "mvn compile", i get "Class is duplicated" error. I can't ...
1
vote
3answers
33 views

Include directive is not been including the required content

Hi I'm very new to android programming and I'm playing with the include tag. I have a layout named companylogo as : <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
8
votes
4answers
2k 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 ...
1
vote
0answers
61 views

Getting a TypeError: wrong argument type Array (expected Module) with include java_import

I'm just starting using JRuby and when I test following code saved as a script include java_import frame = javax.swing.JFrame.new frame.getContentPane.add javax.swing.JLabel.new('Hello, World!') ...
1
vote
1answer
90 views

How To Include Xml Schemas/Resources In Target Jar File When Compiling With Maven Jaxb?

I took over ownership of a Java project that uses the maven-jaxb2-plugin. Everything compiles fine, however, it's not putting the xsd files in the generated .jar file. The only thing I can think of ...
0
votes
1answer
297 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, ...
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 ...
1
vote
3answers
562 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
2answers
97 views

Use a jar included in a jar

I'm developing a little framework which depends on a library (jar file). I managed to include that dependency in the final framework jar file. But when I include this framework jar (which includes the ...
-3
votes
3answers
236 views

Include external Library like JDOM in a JAR file [duplicate]

Possible Duplicate: Easiest way to merge a release into one jar-file I made a simple project with 4 classes. It uses the JDOM library and I included it in my classpath. When i make a JAR ...
1
vote
3answers
260 views

android - include layout or fragment

Let's say that I have a class TitleBar which calls title_bar.xml layout file. Some TextViews are set in TitleBar.java file so title_bar.xml is dependent to it. What is the easiest way to include this ...
0
votes
0answers
255 views

REST and JAX-RS installation on Elcipse, not working

I'm trying to install JAX-RS on my Ecplise, to use it for a REST application. I've been following this nice videoclip lesson. There you can see, around 1m20sec moments, that the guy is configuring ...
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
231 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" /> ...
0
votes
2answers
64 views

Abstract same import calls used by several java files

I am familiar with Java but I am still trying to figure out some concepts. Say I have FileA.java and FileB.java. Both files use the same import calls at the header of the file, for example: ...
6
votes
2answers
210 views

Where the hell is ISafeRunnable?

I have downloaded a code that was written on the Eclipse platform, and I want to compile it, but one of the jar files that I include, uses a class called ISafeRunnable, and the class's canonical name ...
0
votes
0answers
69 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
1answer
163 views

AdMob error at running app

This is a java code: package h.a.s.i; import com.google.ads.AdRequest; import com.google.ads.AdSize; import com.google.ads.AdView; //and next public class about extends ...
0
votes
2answers
316 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" ...
1
vote
1answer
351 views

How to use the IncludeHandler inside my custom component?

In question: The class behind ui:include JSF tag I found out that I need to use the IncludeHandler to use <ui:include> programmatically. However, the constructor needs a "config"-parameter ...
1
vote
1answer
292 views

How to include JSTL / EL footers inside a .jsp?

I've got a simple .jsp file using <c:import url="...jsp"> for header and footer. For the header it works great: there's some ${...} EL substitution being done inside the header.jsp that I c:import ...
1
vote
1answer
403 views

Display dynamic editors in JSF with ui:include

I want to display a group of editors in a tabview. Each editor has a property called component, that stores the rendered editor. Simple editors use HTML tags to render the editor, whereas complex ones ...
2
votes
3answers
1k views

Java - Including variables within strings?

Ok, so we all should know that you can include variables into strings by doing: String string = "A string " + aVariable; Is there a way to do it like: String string = "A string {aVariable}"; In ...
0
votes
2answers
476 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
5answers
69 views

Include automatically generated methods in a java class

I have a question which I am not sure can be answered. I have a php script on a server that automatically generates a java method based on table contents in a MySQL Database. The script creates a ...
0
votes
3answers
169 views

How to use the PHP “include” function after a javascript code?

How to use the PHP "include" function after a javascript code, cause when the animation starts it stops because it has to load the php included page. So I want to "include" the page after the ...
2
votes
2answers
337 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
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 ...
0
votes
4answers
299 views

Eclipse IDE java equivalent of PHP include?

I've been digging around but can't find anything useful. I'm working on an Android App. Basically I have a package and there are three java files in it so far; my main screen page, a settings page ...
2
votes
1answer
956 views

Reusing the same page multiple times

Is it possible to reuse one page multiple times attached to different objects? I have a page were you can input personal information (name, address, social number, ...) connect to one bean: prospect. ...
0
votes
2answers
50 views

Can I include code from one file to the next, similar to Includes in html

Ok, Please be gentle and kind. I am taking an Android Programming class in college and its our teachers first semester so he is learning as we are... Nothing against him, he's a good teacher, just ...
-4
votes
5answers
7k views

How do you #include files in java?

Coming from a C++ environment I got used to splitting up many of the functions that I needed into an funcs.h file and then do #include "funcs.h" and then adding the functions prototypes into the main ...
0
votes
2answers
702 views

Error when including jsp files on my jsp page

I am trying to include 2 JSP files in my JSP page. My main page is called temp.jsp - this is in a subfolder in my web project called tempFolder. I am trying to include a file in the main project ...
0
votes
1answer
373 views

eclipse error when using a java variable between included files

I have a JSP file that @includes two other files. The first of the included files has a global variable declared within it. I want to use this variable in the second included file. It works o.k. ...
1
vote
1answer
3k views

Eclipse: including libraries with war file project

I use the jstl library in my project, but as an external jar. After exporting my project to a .war file, these libraries are not included and I'm getting errors. How do I make sure the library is ...
0
votes
1answer
308 views

How to modify include file in jsp page without showing blank content

I am a beginner with jsp servlets, and I need some help having my page not show up blank when I make changes. I am trying to include the the code from a donate-box.jsp into the layout of the ...
2
votes
1answer
580 views

Error in includign jspf

I want to make include jspf into index jsp page , these statements <%-- any content can be specified here e.g.: --%> <%@ page pageEncoding="UTF-8" %> aappears in the index page !! ...
2
votes
7answers
177 views

How to do something similar to an include in C?

Forgive my ignorance, but I am a beginner in java that comes from using structured programming and I don't know how I can do something similar to include in c, php or other similar languages. I have ...
2
votes
1answer
586 views

Include the content of a jsp in a servlet

I have this servlet: public class SaveImage extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { ...
0
votes
1answer
333 views

Passing complex parameter to jsp include

In my main jsp I am including another jsp to display a fragment of the page. I need to pass a parameter to this include: I know about: <jsp:param name="param2" value="value2" /> My problem ...
0
votes
2answers
847 views

How Eclipse can compile jsp fragments whose variables are declared in another file?

I want completion and compilation erros on eclipse for jsp fragments in eclipse. How can i have completion on test2.jnc for this files : <%-- test1.jsp --%> <%@ page language="java" %> ...
1
vote
2answers
2k views

Insert html elements dynamically into a template of jsp file

I want to insert some html elements dynamically into a template of jsp file. I know I can do this by using a code snippet of javascript, but I wonder is there better ways? Here my example: ...
4
votes
1answer
609 views

Velocity: Is it better to use a Velocity Macro or #include(…) statement for a DIV block repeated many times on different pages?

I have about 10 standard blocks of dynamically generated HTML that get included on a large percentage of pages on my site (informational sidebars). I can use #include statements or define them as a ...

1 2