I am trying to get a Tiny Java Webserver (TJWS) running to handle RESTful requests from an Android client. Until this afternoon everything was working fine but suddenly, after changing no code at all, this exception occurred:

Exception in thread "main" java.lang.NoSuchMethodError: org.jboss.resteasy.plugins.server.tjws.TJWSServletServer$FileMappingServe.addServlet(Ljava/lang/String;Ljavax/servlet/Servlet;Ljava/util/Hashtable;)V
at org.jboss.resteasy.plugins.server.tjws.TJWSServletServer.addServlet(TJWSServletServer.java:88)
at org.jboss.resteasy.plugins.server.tjws.TJWSEmbeddedJaxrsServer.start(TJWSEmbeddedJaxrsServer.java:57)
at de.uniluebeck.isp.fallstudie.middleware.server.RESTServer.start(RESTServer.java:38)

The executed code in RESTServer.java looks as follows:

public void start(Server server){
    this.server=server;
    TJWSEmbeddedJaxrsServer tjws = new TJWSEmbeddedJaxrsServer();
    tjws.setPort(8081);
    tjws.getDeployment().getActualResourceClasses().add(RESTServer.class);
    tjws.start();
}

Line 38 is the line with tjws.start().

The Java Build Path includes these libraries:

  • commons-lang-2.1.jar
  • jaxrs-api-2.3.1.GA.jar
  • json-lib-2.4-jdk15.jar
  • resteasy-jaxrs-2.3.1.GA.jar
  • servlet.jar
  • war.jar
  • webserver.jar.

JavaSE 1.6 is used.

Some debug code is displayed before this exception and I can create a .jar file without any errors so the exception occurs during runtime.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.