classpath « jetty « Java Enterprise Q&A





1. Classpath for custom Solr Transformer    stackoverflow.com

I have written a custom Transformer subclass for the Solr DataImportHandler. It is in a jar file, but I can't figure out how to get solr to find it. ...

2. Problem with Apache Commons Id UUID Version 1 generation    stackoverflow.com

My problem is to generate version 1 UUIDs. We use Jetty 6.x, Maven (to start Jetty among other things) and Apache Commons ID (to generate UUID version 1 from ...

3. Webapp requiring additional jars (eg webservices-rt.jar) works in jetty 6 but not 7    stackoverflow.com

I have a really simple web service which works fine in jetty 6:

java -Djetty.class.path=/path/to/webservices-rt.jar -jar start.jar
but the same commandline for jetty 7 fails with a ClassNotFoundException for WSServlet. I also tried ...

4. Jetty 6 to Jetty 7 upgrade: what happened to system property "jetty.lib"? (-Djetty.lib=my/lib/dir)    stackoverflow.com

Looks like Jetty team wanted to do some spring cleaning between versions 6 and 7, and it looks as if one useful system property, "jetty.lib" either does not exist, does not ...

5. Wicket WAR in Jetty: .html files not on classpath    stackoverflow.com

I deployed a Wicket-based app's .war file to Jetty 7.0.2. The problem is that Jetty copies the classpath to a temp dir, but only copies *.class, so *.html is not available ...

6. Default Jetty ClassLoader path and changing it for testing    stackoverflow.com

I would like to know the default path for the class loader for Jetty. If I am deploying a WAR in a jetty container, how would I change the classpath to ...

7. How to change the classpath or add classpath for Jetty    stackoverflow.com

I am deploying a web application in a Jetty container and I need to know how to add a classpath for Jetty to be able to load resources from a testing ...

8. Making a webapp use testing resources    stackoverflow.com

I am using jetty to deploy my webapp and I need it to access some test resources. How can I make it change its classpaths so the resources in my testing ...

9. HTTP Error 404 with jetty server    stackoverflow.com

I have the following folder structure in my project.

> src/
>>main/
>>>webapp/
>>>>WEB_INF/
>>>>>pages/
>>>>>>js/
All my script files are located in js folder and my jsp page is located in pages folder.In order to include abc.js ...





10. Jetty Classpath issues    stackoverflow.com

I'm currently running Solr out of a Jetty container that it ships with. It runs correctly when run from the command line via:

java -jar start.jar
when I'm in the same directory ...

11. Installing Jetty on Ubuntu, getting com.sun.tools.javac.Main is not on the classpath    stackoverflow.com

I'm trying to install Jetty on Ubuntu 11.04 and I'm about to pull my hair out. I'm running into a classpath issue. I start Jetty with start.jar, setting JAVA_HOME to point ...

12. Exclude Gradle classpath runtime when launching JettyRun    stackoverflow.com

I have your basic run of the mill Gradle web application project and it works ok but I noticed that Gradle's runtime classpath is being included in the jetty one which ...