前提・実現したいこと
Springbootで、架空の商品通販ページを作成しています。
ここに質問の内容を詳しく書いてください。
行いたいこと
検索機能を行った後の、ページングを行うと前のURLの情報を引き継げずにいる状態を解決したいです。
遷移前のURL:/category/1?categoryId=3
遷移後のURL:/category/1?page=1
理想のURL:/category/1?categoryId=3&page=1
このように、categoryId=3の情報をページング後に引き継げていません。
ページングの機能の実装でエラーが発生してしまいました。
発生している問題・エラーメッセージ
[THYMELEAF][http-nio-55000-exec-6] Exception processing template "/item/list/item_list": An error happened during template parsing (template: "class path resource [templates//item/list/item_list.html]")
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//item/list/item_list.html]")
Caused by: org.attoparser.ParseException: Could not parse as assignation sequence: "currentUrl=($[currentUrlWithoutParam.apply('page')])" (template: "/item/list/item_list" - line 78, col 13)
該当のソースコード
Controllerページがこちらです。
Configページには以下の文を挿入しました。
試したこと
・htmlのページングに該当していないページの表示→問題なく表示されました。
・ページングにかかわりのあるConfigを編集しました。
・Controllerにて
ここにより詳細な情報を記載してください。
プログラミング初学者です。
どこのソースコードを、どのように編集すべき窯で教えていただけると助かります。
よろしくお願いいたします。
あなたの回答
tips
プレビュー