0

サーバーコードには Java Restlet を使用しました。私のアプリケーションは単純なブログ サイトです。

クラスを拡張org.restlet.Applicationして、アプリケーションの Router を定義します。以下のように投稿コメント用にルーターを設定しました

 router.attach("/posts/{id}/comments", CommentResource.class);
  router.attach("/posts/{postId}/comments/{commentId}", CommentResource.class);

しかし、上記のルーターは機能しません。常に 500 内部サーバー エラーが発生します。

4

0 に答える 0