简体   繁体   中英

Form using Thymeleaf doesn't work with POJO

I rewrite code from Mastering Spring book's and it does not work because all time I got the exception:

Caused by: java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'profileForm' available as request attribute

My form:

    <form th:action="@{/profile}" th:object="${profileForm}" method="post" class="col m8 s12 offset-m2">
        <div class="row">
            <div class="input-field col s6">
                <input th:field="${profileForm.twitterHandle}" id="twitterHandle" type="text"/>
                <label for="twitterHandle" th:text="#{twitter.handle}">Identyfikator Twitter</label>
            </div>
            <div class="input-field col s6">
                <input th:field="${profileForm.email}" id="email" type="email"/>
                <label for="email">Adres e-mail</label>


            </div>
        </div>
        <div class="row">
            <div class="input-field col s6">
                <input th:field="${profileForm.birthDate}" id="birthDate" type="text"/>
                <label for="birthDate" th:text="#{birthdate}">Data urodzenia</label>
            </div>
        </div>

        <div class="row s12 center">
            <button class="btn indigo waves-effect waves-light" type="submit" name="save">Wyślij
                <i class="mdi-content-send right"></i>
            </button>
        </div>
    </form>

My POJO:

package masterspringmvc.profile;

import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;

public class ProfileForm {
    private String twitterHandle;
    private String email;
    private LocalDate birthDate;
    private List<String> tastes = new ArrayList<>();

    // getters setters
}

My Controller:

@Controller
public class ProfileController {

    @RequestMapping(value = "/profile", method = RequestMethod.GET)
    public String displayProfile() {
        return "profile/profilePage";
    }

    @RequestMapping(value = "/profile", method = RequestMethod.POST)
    public String saveProfile(ProfileForm profileForm) {
        System.out.println("Profil: " + profileForm);
        return "redirect:/profile";
    }
}

Tomcat prints shows:

Error during execution of processor 'org.thymeleaf.spring4.processor.attr.SpringInputGeneralFieldAttrProcessor' (profile/profilePage:16)

According to book everything should be ok, but I still getting errors, why?

I think you need to:

  1. Add " profileForm " to the model.
  2. Add " @ModelAttribute("profileForm") " to the post controller.

In addition, you can simplify your @RequestMapping s

@Controller
public class ProfileController {
    @GetMapping("/profile")
    public String displayProfile(Map<String, Object> model) {
        model.put("profileForm", new ProfileForm());
        return "profile/profilePage";
    }

    @PostMapping("/profile")
    public String saveProfile(@ModelAttribute("profileForm") ProfileForm profileForm) {
        System.out.println("Profil: " + profileForm);
        return "redirect:/profile";
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM