未在表单对象 Thymeleaf 中设置 ID Spring

Id is not set in form object Thymeleaf Spring

我正在尝试使用 Thymeleaf 和 Spring 服务器编辑以前填写的表格。

这是 "previous form",它是 POST 在 Spring 服务器中正确保存的 "previous form"。

<form id="addingnovoatributo" action="#" th:action="@{'/addingoextraattributes/'}" th:object="${new_point_attributes}" method="post">
    <p>Id do Attribute: <input type="text" th:field="*{id}" readonly="readonly"/></p>
    <p>Id do Point: <input type="text" th:value="${point.id}" id="pointid" name="pointid" readonly="readonly"/></p>
    <p>Nome do atributo: <input type="text" th:field="*{attribute_name}" /></p>
    <p>Valor do atributo: <input type="text" th:field="*{attribute_value}" /></p>
    <p><input type="submit" value="Submit" class="btn btn-lg btn-success"/> <input type="reset" value="Reset" class="btn btn-lg btn-warning"/></p>
</form>

Spring 服务器正确保存它(使用 JPA CrudRepository)并为此对象(它是一个 POJO class)提供一个唯一的 ID:

@Entity
public class Point_attributes {
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    public long id;
    public String attribute_name;
    public String attribute_value;
    public long pointid;

    public Point_attributes() {
        // TODO Auto-generated constructor stub
    }
    public long getPointid() {
        return pointid;
    }
    public void setPointid(long pointid) {
        this.pointid = pointid;
    }
    public String getAttribute_name() {
        return attribute_name;
    }
    public void setAttribute_name(String attribute_name) {
        this.attribute_name = attribute_name;
    }
    public String getAttribute_value() {
        return attribute_value;
    }
    public void setAttribute_value(String attribute_value) {
        this.attribute_value = attribute_value;
    }
    public long getId() {
        return id;
    }
}

当我想使用此表单对其进行编辑时,问题就来了。 这是发送保存的填充对象的 Spring 控制器方法:

@RequestMapping(value = "EditOneAttri/{id_survey}", method = RequestMethod.GET)
public ModelAndView EditOneAttr(@PathVariable("id_survey") long id_survey,@ModelAttribute Point_attributes mmPoint_attributes, Model model) 
{
    ModelAndView mModelAndView= new ModelAndView("editing_one_attri");
    mModelAndView.addObject("point_attributes",Points_attributesRepository.findById(id_survey));
    return mModelAndView;
}

我们可以看到ID不是0(editing_one_attri.html):

代码:

<html>
<head>
<meta charset="UTF-8">
<title>Editing one Attribute</title>
          <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
     <!-- Versión compilada y comprimida del CSS de Bootstrap -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css">

<!-- Tema opcional -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap-theme.min.css">

<!-- Versión compilada y comprimida del JavaScript de Bootstrap -->
        <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js">     </script>
</head>
<body th:inline="text">
  <div class="container theme-showcase"  role="main">
    <div class="jumbotron">
                <h2>Editing Attribute: [[${point_attributes.id}]]</h2>

                <form id="editing_question_survey" action="#" th:action="@{'/addingoextraattributes/'}" th:object="${point_attributes}" method="post">
                    <p>Id do Attribute: <input type="text" th:field="*{id}" readonly="readonly"/></p>
                    <p>Id do Point: <input type="text" th:field="*{pointid}" readonly="readonly"/></p>
                    <p>Nome do atributo: <input type="text" th:field="*{attribute_name}" /></p>
                    <p>Valor do atributo: <input type="text" th:field="*{attribute_value}" /></p>
                    <p><input type="submit" value="Submit" class="btn btn-lg btn-success"/> <input type="reset" value="Reset" class="btn btn-lg btn-warning"/></p>
            </form>
        </div>           
  </div>
</body>
</html>

Spring服务器收到对象,但id始终为0。 表单中的其余值已正确接收。 谁知道我的错误在哪里?

我解决了这个问题。主要错误是我没有在 ID 中包含 setter,因此 thymeleaf and/or html 表单无法在对象中设置 ID。

因此,在 POJO class 中添加 public void setId(){this.id=id;} 解决了问题。