Весной тимелист дайте ошибку в посте запроса - PullRequest
0 голосов
/ 21 сентября 2018

У меня есть этот простой код: это мой класс контроллера, где я перенаправляю на страницу

@Controller
public class SimpleController {
    @GetMapping("/nuovo-utente")
    public String viewInserisciUtente(Model model){
        model.addAttribute("nuovoUtente", new Utente());
        return "nuovo-utente";
    }

    @PostMapping("/nuovo-utente")
    public void memorizzaUtente(@ModelAttribute Utente utente){
        System.out.println(utente.getId());
    }
}

Это класс модели.

public class Utente {
    private String id=null;
    private String citta=null;
    private String genere=null;
    private String data_nascita=null;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getCitta() {
        return citta;
    }

    public void setCitta(String citta) {
        this.citta = citta;
    }

    public String getGenere() {
        return genere;
    }

    public void setGenere(String genere) {
        this.genere = genere;
    }

    public String getData_nascita() {
        return data_nascita;
    }

    public void setData_nascita(String data_nascita) {
        this.data_nascita = data_nascita;
    }
}

и моя HTML-страница с тимилифомкак:

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Inserisci un nuovo utente</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
    <h1>Form</h1>
    <form action="#" th:action="@{/nuovo-utente}" th:object="${nuovoUtente}" method="post">
        <p>Id: <input type="text" th:field="*{id}" /></p>
        <p>Città: <input type="text" th:field="*{citta}" /></p>
        <p>Genere: <input type="text" th:field="*{genere}" /></p>
        <p>Data nascita: <input type="text" th:field="*{data_nascita}" /></p>
        <p><input type="submit" value="Submit" /> <input type="reset" value="Reset" /></p>
    </form>
</body>
</html>

Итак, как я уже сказал в заголовке, этот простой код формы выдает ошибку, когда я пытаюсь отправить форму по запросу.Ошибка выше:

Error during execution of processor 'org.thymeleaf.spring5.processor.SpringInputGeneralFieldTagProcessor' (template: "nuovo-utente" - line 10, col 32)

Что вы можете сказать мне?Некоторая помощь будет признательна

Ответы [ 2 ]

0 голосов
/ 24 сентября 2018

Прежде всего в вашей html-странице измените

<html xmlns:th="http://www.thymeleaf.org">

на

<html xmlns:th="http://www.w3.org/1999/xhtml">

И напишите свой класс контроллера как

@PostMapping("/nuovo-utente")
   public String memorizzaUtente(@ModelAttribute("nuovoUtente") Utente utente) {
      System.out.println(utente.getId());
      return "any page";
   }
}
0 голосов
/ 23 сентября 2018

Вы должны использовать разные HTML и URL.Один для создания формы и другой для отправки формы.Вы используете тот же URL.

...