前提・実現したいこと
Spring boot でthymeleafを使ってList型の値のバインドをしたいです。
A, B, Cという表示のチェックボックスにチェックを入れると"true"がConditionalForm(Formクラス)のconditionalClassificationプロパティ(Boolean型のMutableList)に格納されるような仕組みを作りたいです。
発生している問題・エラーメッセージ
java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'conditionalClassification[0]' available as request attribute
該当のソースコード
option.html
html
1<!DOCTYPE html> 2<html lang="en"> 3<html xmlns:th="http://www.thymeleaf.org"> 4<head> 5 <meta charset="UTF-8"> 6 <title>条件選択</title> 7 <link rel="stylesheet" th:href="@{/css/option_style.css}"> 8</head> 9<body> 10 <form method="post" class="move" th:action="@{/option}" th:object="${conditionalForm}">条件を適応</form> 11 <ul class="small" th:each="classification, itemStat : ${checkClassification}"> 12 <li> 13 <div> 14 <input name="classification" type="checkbox" 15 th:value="${classification.value}" 16 th:field="*{conditionalClassification[__${itemStat.index}__]}"/><!--ここでエラーが発生--> 17 <label th:text="${classification.key}"></label> 18 </div> 19 </li> 20 </ul> 21</body> 22</html>
OptionController.kt
kotlin
1import com.base.t.CircleIntroduction.Domain.ConditionalForm 2import org.springframework.stereotype.Controller 3import org.springframework.ui.Model 4import org.springframework.validation.BindingResult 5import org.springframework.validation.annotation.Validated 6import org.springframework.web.bind.annotation.GetMapping 7import org.springframework.web.bind.annotation.ModelAttribute 8import org.springframework.web.bind.annotation.PostMapping 9 10 11@Controller 12class OptionController { 13 14 var checkClassification = mutableMapOf<String, String>() 15 16 private fun initCheckOrganization(): MutableMap<String, String> { 17 var check = mutableMapOf<String, String>() 18 check["A"] = "true"//keyは個人的な理由で書き換えました 19 check["B"] = "true" 20 check["C"] = "true" 21 return check 22 } 23 24 @GetMapping("/option") 25 fun getOption(@ModelAttribute form: ConditionalForm, model: Model): String { 26 checkClassification = initCheckOrganization() 27 model.addAttribute("checkClassification", checkClassification) 28 return "option" 29 } 30}
ConditionalForm.kt
kotlin
1data class ConditionalForm( 2 var conditionalClassification: MutableList<Boolean?>? 3) { 4 init { 5 conditionalClassification = mutableListOf(false, false, false) 6 } 7}
回答1件
あなたの回答
tips
プレビュー