Categories
General

Adding Jetty 6 to Eclipse as a server runtime and overcoming the NullPointerException on Launch

I love Jetty. It is small, it is very fast and once you use it you start pondering why you use Tomcat. The reason in most cases is that you know Tomcat and it is relatively very well documented. Jetty is not as well documented but well worth the effort. One thing that Tomcat has and Jetty does not is built-in support in Eclipse as a server runtime.

The beauty of server runtimes is that you can easily deploy and update-on-the-fly web applications to the server. So if you modify a class in an web application, it is automatically updated – possibly restarting the server for you.

The makers of Jetty try to fill in this gap with their server runtime – which can be easily installed if you follow the instructions. Still, when trying to launch my web application on the new Jetty runtime, I kept getting an obnoxious, trace-free NullPointerException. As a user of Eclipse 3.3.2 Europa with little time to upgrade to Ganymede, I repeatedly tried to upgrade the WTP from my version 2.0.2 to whatever is current. That fails, in classic Eclipse fashion, because it is all geared at the *current* version of Eclipse (3.4).

What ended up working for me was to download the 2.0.2 patches from the WTP site. I extracted the files from the zip file to a directory. I then installed them using the update manager as a local site. To do that:

  1. Open the update manager: Help -> Software Updates -> Find and Install
  2. Choose ‘Search for new features to install’ and click ‘Next’
  3. Click ‘New Local Site’
  4. In the window that will open, point at the location that you extracted the zip file to, and in there, the ‘eclipse’ folder
  5. Click Finish

Eclipse will automatically install the patches, potentially restarting itself to have them take effect. This should cure the NullPointerException on launch for Jetty, and actually for several other servers that suffered from it in version 2.0.2 of the WTP in Eclipse 3.3.

NOTE:
If this does not work, also make sure that Eclipse is using the JDK’s JRE and NOT a generic Java JRE. A servlet container like Jetty must be able to compile files on the fly and therefore needs the JDK beyond the JRE.

Share

Leave a Reply

Your email address will not be published.

 

Share