前提・実現したいこと
SpringBootで検索した結果をページネーションで表示したいのですが、
検索して、ページネーションで次のページに移動しようとするとエラーになってしまいます。。。。。
ご教授いただければと思います。
検索してからページネーションした時
URLが以下のようになるので、それが原因かと思ったのですが、、、、
http://localhost:8080/search?page=1
発生している問題・エラーメッセージ
Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Sun Mar 15 19:21:53 JST 2020 There was an unexpected error (type=Method Not Allowed, status=405). Request method 'GET' not supported
該当のソースコード
java
1 /** 2 * ページネーション 3 */ 4 @RequestMapping(value="/pagenate", method = RequestMethod.GET) 5 public ModelAndView pagenate(@RequestParam("page") int page, 6 ModelAndView mav) { 7 SerchVideoForm form = (SerchVideoForm)session.getAttribute(SESSION_FORM_ID); 8 form.setPage(page); 9 return search(form, mav, null); 10 } 11 12 /** 13 * 検索 14 */ 15 @RequestMapping(value = "/search", method = RequestMethod.POST) 16 public ModelAndView search(SerchVideoForm serchVideoForm, ModelAndView mav,@PageableDefault( 17 page = 0, 18 size = 3 19 )Pageable pageable) { 20 session.setAttribute(SESSION_FORM_ID, serchVideoForm); 21 String keyword = serchVideoForm.getKeyword(); 22 System.out.println("keyword" + keyword); 23 24 TopNewForm topNew = new TopNewForm(); 25 26 //スペース区切りでリスト化 27 //全角スペースを半角スペースに痴漢 28 String keywordHalf = keyword.replace(" ", " "); 29 List<String> keywordList = Arrays.asList(keywordHalf.split(" ")); 30 Page<TopNewForm> newVideoList= topService.findSerchVideo(topNew, pageable, keywordList); 31 int pageNationMin = 0; 32 int pageNationMax = newVideoList.getTotalPages() -1; 33 System.out.println("pageNationMax" + newVideoList.getTotalPages()); 34 //ページネーションの表示最小値を設定 35 if(newVideoList.getPageable().getPageNumber() - 2 > 0) { 36 pageNationMin = newVideoList.getPageable().getPageNumber() -2; 37 } 38 //ページネーションの表示最大値を設定 39 if(newVideoList.getPageable().getPageNumber() + 2 < pageNationMax) { 40 pageNationMax = newVideoList.getPageable().getPageNumber() + 2; 41 } 42 mav.addObject("pageNationMin", pageNationMin); 43 mav.addObject("pageNationMax", pageNationMax); 44 mav.addObject("newVideoList", newVideoList); 45 mav.setViewName("top"); 46 return mav; 47 }
java
1public class SerchVideoForm { 2 //ページ 3 private int page; 4 //検索ワード 5 private String keyword; 6 7 public String getKeyword() { 8 return keyword; 9 } 10 11 public void setKeyword(String keyword) { 12 this.keyword = keyword; 13 } 14 15 public int getPage() { 16 return page; 17 } 18 19 public void setPage(int page) { 20 this.page = page; 21 } 22} 23
html
1 <!-- 検索フォーム部分 --> 2 <form class="form-inline" action="/search" th:action="@{/search}" th:object="${serchVideoForm}" method="POST"> 3 <input class="form-control mr-sm-2" name="keyword" type="search" placeholder="検索キーワード" aria-label="検索キーワード"> 4 <button class="btn btn-outline-success my-2 my-sm-0" type="submit">検索</button> 5 </form> 6 7<!-- ページネーション部分 --> 8 <form th:action="@{/pagenate}" th:object="${page}" method="GET"> 9 <nav aria-label="pagen"> 10 <ul class="pagination justify-content-center"> 11 <li th:class="${newVideoList.first} ? 'page-item disabled':''"> 12 <span th:if="${newVideoList.first}" class="page-link" th:href="@{${url}(page=0)}">←先頭</span> 13 <a th:if="${not newVideoList.first}" class="page-link" th:href="@{${url}(page=0)}">←先頭</a> 14 </li> 15 <li th:each='i : ${#numbers.sequence(pageNationMin, pageNationMax)}' th:class="(${i}==${newVideoList.number})? 'page-item active' : ''"> 16 <span th:if='${i}==${newVideoList.number}' class="page-link" th:href="@{${url}(page=${i})}" th:text='${i+1}'>1</span> 17 <a th:if='${i}!=${newVideoList.number}' class="page-link" th:href="@{${url}(page=${i})}"> 18 <span th:text='${i+1}'>1</span> 19 </a> 20 </li> 21 <li th:class="${newVideoList.last} ? 'page-item disabled':''"> 22 <span th:if="${newVideoList.last}" class='page-link' th:href="@{${url}(page=(${newVideoList.totalPages}-1))}">末尾➝</span> 23 <a th:if="${not newVideoList.last}" class='page-link' th:href="@{${url}(page=(${newVideoList.totalPages}-1))}">末尾➝</a> 24 </li> 25 </ul> 26 </nav> 27 </form>
試したこと
methodをPOSTとGETで色々入れ替えたりしたのですが、
うまくいかずです。。。。
補足情報(FW/ツールのバージョンなど)
SpringBoot 2.2.4.RELEASE
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。