I'm running Jetty 9.2 as a osgi bundle using Felix framework.In the command prompt,Apache Felix was started like
java -Djetty.home=C:/osgiJars/jetty-osgi-boot-9.2.0.M0/jettyhome -jar bin/felix.jar
My jetty home is like the following
Once the felix framework is started, in the command prompt i can see my list of bundles loaded in ACTIVE state.
Now, I'm trying to load an Sample web app(JSP + Servlets) as OSGi bundle.I'm getting an error like (in cmd prompt)
g! 2014-06-27 11:56:03.129:INFO:/WebApp:qtp31392457-30: No JSP support. Check that JSP jars are in
lib/jsp and that the JSP option has been specified to start.jar
I know that for JSP support to be configured, you need to set options while starting Jetty server like JETTY.OPTIONS= Server,jsp.
So,I've tried while setting Jetty home like
java -Djetty.home=C:/osgiJars/jetty-osgi-boot-9.2.0.M0/jettyhome -Djetty.options=Server,jsp -jar bin/felix.jar
But still getting same error. Anyone kindly suggest me how to configure my JSP in this case..?