Tagged Questions
Jasper is Apache Tomcat's JSP engine.
6
votes
2answers
1k views
Jasper in Jetty 6 throws exception for JSTL tag
I'm trying to run an application in jetty that runs fine in Tomcat 5.5. The app uses servlet 2.4 and JSP 2.0.
Jetty/Jasper is throwing this exception:
org.apache.jasper.JasperException: ...
3
votes
2answers
174 views
How can I work with Iterables in my JSP pages?
I'm using an API that makes heavy use of Iterables (java.lang.Iterable), but I can't use them directly on my JSP pages because JSTL tags and EL can not process them. Right now, I'm transforming each ...
2
votes
1answer
214 views
jasper/JSP precompile problem with migration to Tomcat 7 - NumberFormatException: For input string
I've got a working webapp running on Tomcat 5.5 that I'm trying to port to Tomcat 7. I'm running into a problem when trying to precompile some JSPs with Jasper2. I get:
...
2
votes
2answers
227 views
Slow performance cropping large JPEG2000 images with ImageMagick/Jasper
I have a 4000x3000, 3.7MB JPEG2000 file that I'm trying to process into cropped tiles. I do this with a command like:
convert 486.jp2 -crop 256x256+0+0 -format jpg 486_crop.jpg
This command takes 5 ...
2
votes
2answers
250 views
Failing import in on-the-fly JSP compilation
We have a large web app installation, using Apache/Tomcat/Jasper and jboss. In development environment, JSPs are compiled on the fly. Unfortunately, there is one package in particular that the ...
2
votes
2answers
607 views
Jasper in jetty throws IllegalStateException on getOutputStream but not on Tomcat
I have a web application that's currently running under Tomcat 5.5.25. I'm attempting to port it to Jetty 6 to take advantage of the rapid refresh time for jsp and UI changes especially.
Since my JSP ...
1
vote
1answer
50 views
JSP Page becomes too long to get compile
I have a JSP page . With the course of time it has become very long somehow.
Recently i was compiling the jsp page and i got an exception from the compiler that
...
1
vote
1answer
53 views
Negative time from JSP compiler
What might be causing an error like this? Javadoc for File.java says it will throw this exception if passed in a negative value. So the question is, why is jasper passing in a negative value. I looked ...
1
vote
0answers
22 views
What is the point of the Jasper PageContext pool?
The title pretty-much says it all.
The issue is that the jasper PageContext pool creates, by default, a pool of 8 PageContext items in the thread-local data of a web-container thread. If the ...
1
vote
0answers
267 views
How to deploy precompiled JSF without .jsp to Tomcat6?
I'm trying to learn to deploy only precompiled JSF without .jsp files to Tomcat6, but hit HTTP Status 404 resource not found error. Below are the steps I did in my test (sorry, a bit lengthy):
The ...
1
vote
1answer
2k views
org.apache.jasper.JasperException: Unable to compile class for JSP
I'm new to using libraries, but i need to be able to send an email to users who forget their password. I'm trying to use the JavaMail and Apache Commons Email to implement this. However, I think I ...
1
vote
1answer
121 views
Compiling JSP Files in a VFS in Google App Engine
Traditionally, JSP files in web applications are compiled before being rendered, sometimes at runtime depending on how the WAR is configured. From what I undersand, the Google App Engine doesn't ...
1
vote
1answer
172 views
Convert a JSP contained in a String to a Servlet programatically
I have a JSP in a string variable in a servlet and I would like to compile it as a JSP myself (on the fly, programatically). Right now what I am doing is saving the string to a file and accessing ...
1
vote
5answers
933 views
Compile and interpret JSP with Java only
I would like to compile and interpret JSP in Java, out of Tomcat or any other servlet container. I think I may use the Jasper libraries coming with Tomcat, but I can't find any example of how to do it ...
1
vote
1answer
2k views
Maven Embedded Jetty Container fails to load Taglibs: Unable to initialize TldLocationsCache
I'm using the Maven Cargo Plugin to startup a Jetty web container for running some integration tests in a separate project module.
The problem i'm battling with occurs when i added taglibs into the ...
0
votes
0answers
68 views
How does tomcat generate its work directory *_jsp.java files, and what might cause it to generate zero-byte ones?
My question derives from an upgrade from Tomcat 6.0.18 to 7.0.22, although it seems likely the issue arises in other versions. I suspect it stems from my misunderstanding of Tomcat's core behavior, ...
0
votes
0answers
19 views
Jasper encoding on Tomcat 7
I’ve just installed Tomcat 7 on my machine and I deployed a jsp file UTF8 encoded.
The documentation of Tomcat says that JasperEngine uses UTF8 to transform the jsp file into a .java file. But the ...
0
votes
0answers
119 views
jasper exception: unable to compile class for jsp Generated servlet error
I am trying to run a web-application (on a workstation) that is already in production.
Base configuration on my workstation is as follows:
Tomcat 6.0.33
IntelliJIdea 10.5.2
JDK 1.6.0_17
Windows
...
0
votes
0answers
32 views
0
votes
0answers
54 views
Automation Error in Excel while trying to load JVM
We have a Java application (that is running through Excel via a JNI bridge).
The application has been running fine for years at hundreds of clients through the various incarnations of Java, starting ...
0
votes
1answer
31 views
How to redirect the standard output from Sicstus4 to a Java component using Jasper?
I'm using a library called Jasper to link my Java application to the Sicstus4 software. This is working smoothly but when I make a query to it I need to grab the output in order to show it in a ...
0
votes
1answer
172 views
Change the class loader of the JSP servlet (Jasper)
What I want to achieve, is to proxy the request URI and render a different JSP file depending on some condition in the request users session.
I.e.
userA -> request: /{container}/index.jsp -> return: ...
0
votes
1answer
330 views
Performance and information JSP compilation and runtimes (websphere, tomcat)
Does anyone have any information on the performance of JSP runtimes. I haven't found any statistics on them.
For example,are there any performance or memory issues with how I use jsp includes or EL ...
0
votes
3answers
2k views
taskdef A class needed by class org.apache.jasper.JspC cannot be found: Could not initialize class org.apache.jasper.JspC
Hi I am getting the error taskdef A class needed by class org.apache.jasper.JspC cannot be found: Could not initialize class org.apache.jasper.JspC when I tried to build the build.xml file. can anyone ...
0
votes
2answers
871 views
Jasper in Equinox - does not resolve jstl core uri
I'm currently researching OSGi with Spring, and working through a couple of examples from Pro Spring Dynamic Modules for OSGi.
My example web-app has a single controller like:
@Controller
public ...