Hi guys,
I know that this has been discussed a lot, and I found several threads on the internet, but none of them seems to working for me. I have jetty version 8.1.14.v20131031 configured with 2 handlers:
ROOT (a folder mapped to /)
admin.war (a war file mapped to /admin)
Now when I access my website on
http://localhost:8111/ it all looks good. Same with https - all works fine. The problem is when I go to
http://localhost:8111/admin/ - I get "JSP support not configured" in the browser. I'm using JSW from Tanukisoftware so I have this folder structure:
bin/
lib/
logs/
temp/
webapps/
Webapps holds the ROOT folder and the admin.war, and lib holds all the jsp, jetty and servlet-related jars:
11/26/2013 02:35 PM 200,050 asm-all-3.1.jar
10/29/2013 07:54 AM 471,903 c3p0-0.9.5-pre5.jar
11/26/2013 02:35 PM 26,366 javax.annotation-api-1.2.jar
11/26/2013 02:35 PM 73,063 javax.el-api-3.0.0.jar
09/19/2013 07:48 PM 200,387 javax.servlet-3.0.0.v201112011016.jar
09/19/2013 06:57 PM 85,353 javax.servlet-api-3.0.1.jar
11/29/2013 02:01 PM 1,874,522 jetty-all-8.1.14.v20131031.jar
11/29/2013 02:01 PM 46,310 jetty-start-8.1.14.v20131031.jar
10/15/2013 02:00 PM 49,811 jsp-api-2.2.1-b03.jar
09/19/2013 07:27 PM 414,240 jstl-1.2.jar
10/07/2013 03:24 PM 108,161 log4j-api-2.0-beta9.jar
10/07/2013 03:27 PM 681,134 log4j-core-2.0-beta9.jar
10/07/2013 03:34 PM 22,512 log4j-slf4j-impl-2.0-beta9.jar
10/29/2013 07:54 AM 594,137 mchange-commons-java-0.2.6.2.jar
11/08/2013 04:58 PM 872,300 mysql-connector-java-5.1.27.jar
10/15/2013 12:26 PM 26,084 slf4j-api-1.7.5.jar
On the other hand in WEB-INF/lib I have absolutely no jar about servlet, or jsp or jetty.
So it seems like both ROOT and admin configurations should be using the jars under lib/ but the fact is that ROOT works and admin.war doesn't.
Any suggestion would be greatly appreciated.