5

我正在创建一个带有 select 标记的表单,如下所示:

<form th:object="${version}" method="post" class="form-horizontal">
    ...
    <div class="control-group" th:classappend="${#fields.hasErrors('product')} ? 'error'">
        <label class="control-label" for="product" th:text="#{version.product}">Product</label>
        <div class="controls">
            <select id="product" th:field="*{product}">
                <option value="" th:text="#{common.select.prompt}"></option>
                <option th:each="p : ${productList}" th:value="${p.id}"  th:text="${p.name}"></option>
            </select>
            <span class="help-inline" th:errors="*{product}"></span>
        </div>
    </div>
    ...
</form>

DomainClassConverterSpring Data JPA有助于在我提交表单时自动将所选对象转换id为实体。也应该不为空(我在类中Product的字段上使用。product@NotNullproductVersion

我遇到的问题 - 当我回来编辑数据时,Product没有选择。

如果我select这样修改(th:fieldth:errors):<-- p.s. is not a sad smile

<select id="product" th:field="*{product.id}">
    <option value="" th:text="#{common.select.prompt}"></option>
    <option th:each="p : ${productList}" th:value="${p.id}" th:text="${p.name}"></option>
</select>
<span class="help-inline" th:errors="*{product.id}"></span>

然后当我回来编辑它时它被选中,但验证器不起作用(product总是实例化,即使选择的 id 是null)。

它看起来像一个非常常见的场景(从列表中选择一个实体),但我找不到任何好看的例子。请分享秘密知识。

4

1 回答 1

3

解决了。存在问题是因为我没有覆盖equals()andhashCode()方法。

于 2013-03-06T04:51:37.760 回答