У меня есть форма из листа тимьяна, которая выдает следующее исключение после отправки
java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'command' available as request attribute
Я прочитал пару ответов, в которых предлагается поставить BindingResult
непосредственно после атрибута модели в методе контроллера, но, похоже, это не помогло. Вот что у меня есть
<form action="#" th:action="@{/capturedetails}" th:object="${command}" method="post">
<div class="form-group" th:if="${mobilePhone} == null">
<label for="mobilePhone">Mobile Phone</label> <input
type="tel" class="form-control"
id="mobilePhone"
placeholder="Mobile Phone no." th:field="*{mobilePhone}"></input>
</div>
<div class="form-group" th:if="${secondEmail} == null">
<label for="secondEmail">Secondary Email</label>
<input type="email" class="form-control"
id="secondEmail" placeholder="Secondary Email" th:field="*{secondEmail}"></input>
</div>
<button type="submit">Submit</button>
</form>
Метод управления
@PostMapping(value = "/capturedetails")
public String updateProfile(@ModelAttribute("command") CaptureDetailsFormCommand command, BindingResult bindingResult, Model model) {
model.addAttribute("command", command);
return "redirect: someWhere";
}
И объект команды
public class CaptureDetailsFormCommand {
private String mobilePhone;
private String secondEmail;
public String getMobilePhone() {
return mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
public String getSecondEmail() {
return secondEmail;
}
public void setSecondEmail(String secondEmail) {
this.secondEmail = secondEmail;
}
}