Closed GoogleCodeExporter closed 9 years ago
I get the same error.
Searching google doesn't turn up anything but this page. :(
Original comment by michaelm...@gmail.com
on 8 Apr 2008 at 7:25
nothing?
I have the same error... both in Ubuntu and Windows
Original comment by emore...@gmail.com
on 25 Jun 2008 at 8:47
What I ended up doing to get around this was to remove the jsp related jar
files from
my classpath:
1) In Eclipse, go to Run menu->Open Run Dialog.
2) Click on your Jetty web application.
3) Click on the Classpath tab
4) Click on any jar files with jsp in the filename (i.e. jsp-2.1.jar or
jsp-api-2.1.jar) and click on the Remove button.
This allowed me to get up and going, and since my app doesn't use JSP, I was
fine.
If you're using JSP, then this workaround may not work.
Original comment by joe.c...@gmail.com
on 25 Jun 2008 at 10:58
I'm having this problem not within Eclipse but from the command line as well,
using
the instructions provided by the Jetty people to use the Maven plugin and get
JSP 2.0
compatibility. It looks like there's still a 2.1/2.0 classpath conflict.
Original comment by mojo...@gmail.com
on 27 Feb 2009 at 6:54
Looks like a spec conflick , too.
As same , it's a old issue and still need more detail to verify it.
Original comment by tonylovejava
on 11 Mar 2011 at 8:47
Original comment by tonylovejava
on 1 Jul 2011 at 8:34
I also faced the same problem. Here is my solution. If you used Eclipse and
faced this issue, try this.
When you try to export your project into .jar runnable file, use the "Package
required libraries into generated JAR" instead of "Extract required libraries
into generated JAR". This worked for me and my jsp page runs well.
By Haijie Wu
Original comment by bylikeha...@gmail.com
on 10 Jul 2011 at 8:26
Since the error class "org.apache.jasper.compiler.JspRuntimeContext" is a
implemenation of Tomcat ,
it doesn't make sense when you run a Jetty webapp but using Tomcat lib.
It usually caused by using Server Runtime lib ,
by default we suggestion remove the server runtime lib and using Servlet API
jar instead.
(We have documented this in GettingStarted wiki.)
Or not to use Run-Jetty-Run in this case if you really need Tomcat feature.
We will ignore all the runtime lib after next official build (1.3) ,
you could reference to Issue 54
Original comment by tonylovejava
on 10 Jul 2011 at 9:01
Original issue reported on code.google.com by
joe.c...@gmail.com
on 4 Feb 2008 at 7:00