Ошибка «Not Found (404)» в рестлете - PullRequest
0 голосов
/ 20 апреля 2011

Я новичок в рестлете.Я создал небольшое приложение Java ee, но оно выдает мне ошибку «Not Found (404)»

public class MailServerApplication extends Application {
   @Override
   public Restlet createInboundRoot() {
      Router router = new Router(getContext());
      router.attach("http://localhost:8084/accounts/{accountId}/mails/{mailId}", MailServerResource.class);
      return router;
   }
}

////////////////////////////////
public class MailServerResource extends ServerResource {
   @Override
   protected Representation get() throws ResourceException {

      DomRepresentation result = null;
      try {
         result = new DomRepresentation();
         result.setIndenting(true);
         Document doc = result.getDocument();
         Node mailElt = doc.createElement("mail");
         doc.appendChild(mailElt);
         Node statusElt = doc.createElement("status");
         statusElt.setTextContent("received");
         mailElt.appendChild(statusElt);
         Node subjectElt = doc.createElement("subject");
         subjectElt.setTextContent("Message to self");
         mailElt.appendChild(subjectElt);
         Node contentElt = doc.createElement("content");
         contentElt.setTextContent("Doh!");
         mailElt.appendChild(contentElt);
      } catch (IOException e) {
      }
      return result;
   }
   @Override
   protected Representation put(Representation representation) throws ResourceException {
      DomRepresentation mailRep = new DomRepresentation(representation);
      Document doc;
      try {
         doc = mailRep.getDocument();
         Element mailElt = doc.getDocumentElement();
         Element statusElt = (Element) mailElt
         .getElementsByTagName("status").item(0);
         Element subjectElt = (Element) mailElt.getElementsByTagName(
         "subject").item(0);
         Element contentElt = (Element) mailElt.getElementsByTagName(
         "content").item(0);
         Element accountRefElt = (Element) mailElt.getElementsByTagName(
         "accountRef").item(0);
         System.out.println("Status: " + statusElt.getTextContent());
         System.out.println("Subject: " + subjectElt.getTextContent());
         System.out.println("Content: " + contentElt.getTextContent());
         System.out.println("Account URI: " + accountRefElt.getTextContent());
      } catch (IOException e) {
         throw new ResourceException(e);
      }
      return null;
   }
}

, но если я его запускаю / отлаживаювыдает следующую ошибку:

Exception in thread "main" Not Found (404) - Not Found
        at org.restlet.resource.ClientResource.handle(ClientResource.java:858)
        at org.restlet.resource.ClientResource.handle(ClientResource.java:763)
        at org.restlet.resource.ClientResource.get(ClientResource.java:496)
        at MailClient.main(MailClient.java:19)

спасибо.

Ответы [ 2 ]

0 голосов
/ 21 апреля 2011

привет благодаря бегемоту.
на самом деле проблема была в URL.
мне пришлось изменить следующую строку

     router.attach("http://localhost:8084/accounts/{accountId}/mails/{mailId}", MailServerResource.class);

в эту строку.

     router.attach("/accounts/{accountId}/mails/{mailId}", MailServerResource.class);

если вы используете структуру рестлета для JavaSE, тогда первый URL был в порядке. но для веб-приложения (java ee) вы должны использовать относительный путь к серверу.

Еще раз спасибо за вашу помощь.

0 голосов
/ 21 апреля 2011

В дополнение к опубликованным комментариям, как вы запустили приложение Restlet?Используя класс Server, как показано ниже:

public class MailServerApplication extends Application {
  (...)
  public static void main(String[] args) {
    try {
      Server server = new Server(Protocol.HTTP, 8084);
      server.setNext(new MailServerApplication());
      server.start();

      System.out.println("Press a key to stop");
      System.in.read();
    } catch(Exception ex) {
      ex.printStackTrace();
    }
  }
}

Как вы сказали, вы разрабатываете приложение JavaEE, возможно, вы использовали расширение сервлета?В этом случае также может учитываться отображение на уровне сервлета.

При первом подходе я заставил ваше приложение работать с org.restlet.jar и org.restlet.ext.xml.jar (версия 2.0.5, издание Джи).Я получил к нему доступ, используя url http://localhost:8084/accounts/10/mails/1.

Надеюсь, это поможет вам.Thierry

...