@Path アノテーション内の構文エラーと未使用の URI テンプレートを報告します。

例:


  @GET
  @Path("/{unused}") // テンプレート 'unused' は使用されません
  public String get() {
    return "";
  }