- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在开发一个用于管理客户端及其机器的应用程序。我已经创建了所有必要的表、架构、 Controller 等。
客户端实体具有列表,机器具有客户端关系(双向,非可选)。
我遇到的问题与向现有客户端添加全新机器有关(前提是该机器已经存在)。
这里是一些简短的代码片段:
@Controller
public class MachineController {
...
@GetMapping("/machines/add/{clientId}")
public String addMachine(@PathVariable("clientId") int clientId, Model model) throws ClientNotFoundException {
model.addAttribute("machineTypes", MachineType.values());
model.addAttribute("machine", new Machine());
model.addAttribute("client", clientService.find(clientId));
return "machines/form";
}
}
@PostMapping("/machines/save")
public String saveMachine(@ModelAttribute @Valid Machine machine, BindingResult bindingResult, Model model)
throws ClientNotFoundException {
model.addAttribute("machineTypes", MachineType.values());
int clientId = machine.getClient().getId();
LOG.debug("ClientId:{}", clientId);
// Client object is not filled here ! clientId is 0 (new client).
}
问题在于保存功能 - 我不知道如何将现有的客户端对象传递给机器对象,该对象是通过 HTTP POST 发送的。我的 Controller 提示客户端未发送并且 BindingResult 抛出错误:
Field error in object 'machine' on field 'client.address.city: rejected value [null]; Field error in object 'machine' on field 'client.address.zipCode: rejected value [null]; Field error in object 'machine' on field 'client.name': rejected value [null];
我期待任何帮助。
HTML 表单如下所示:
<form class="form-horizontal" th:action="@{/machines/save}" th:object="${machine}" method="post" id="machineForm">
<input type="hidden" th:field="*{id}"/>
<!-- Panel for machine -->
<div th:class="${#fields.hasErrors('machineType')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="manufacturer">Rodzaj:*</label>
<div class="col-sm-8">
<select th:field="${machine.machineType}" class="form-control" id="machineTypeSelect">
<option value="" disabled="disabled" selected="selected">Wybierz rodzaj</option>
<option th:each="type: ${machineTypes}" th:value="${type.name()}" th:text="${type}" th:attr="data-has-car=${type.hasCar()}"></option>
</select>
<div class="help-block" th:if="${#fields.hasErrors('machineType')}"
th:errors="*{machineType}"></div>
</div>
</div>
<div th:class="${#fields.hasErrors('manufacturer')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="manufacturer">Producent:*</label>
<div class="col-sm-8">
<input type="text"
class="form-control"
id="manufacturer"
placeholder="Podaj producenta"
th:field="*{manufacturer}" />
<div class="help-block" th:if="${#fields.hasErrors('manufacturer')}"
th:errors="*{manufacturer}"></div>
</div>
</div>
<div th:class="${#fields.hasErrors('model')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="model">Model:</label>
<div class="col-sm-8">
<input type="text"
class="form-control"
id="model"
placeholder="Podaj model"
th:field="*{model}"/>
<div class="help-block" th:if="${#fields.hasErrors('model')}"
th:errors="*{model}"></div>
</div>
</div>
<div th:class="${#fields.hasErrors('productionYear')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="productionYear">Rok produkcji:*</label>
<div class="col-sm-8">
<input type="number"
class="form-control"
id="productionYear"
placeholder="Podaj rok produkcji"
th:field="*{productionYear}"/>
<div class="help-block" th:if="${#fields.hasErrors('productionYear')}"
th:errors="*{productionYear}"></div>
</div>
</div>
<div th:class="${#fields.hasErrors('factoryNo')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="factoryNo">Numer fabryczny:</label>
<div class="col-sm-8">
<input type="number"
class="form-control"
id="factoryNo"
placeholder="Podaj numer fabryczny"
th:field="*{factoryNo}"/>
<div class="help-block" th:if="${#fields.hasErrors('factoryNo')}"
th:errors="*{factoryNo}"></div>
</div>
</div>
<div th:class="${#fields.hasErrors('maxLoad')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="maxLoad">Max udżwig:</label>
<div class="col-sm-8">
<div class="input-group">
<input type="number"
class="form-control"
id="maxLoad"
placeholder="Max. udźwig"
aria-describedby="measure"
th:field="*{maxLoad}"/>
<span class="input-group-addon" id="measure">kg</span>
</div>
<div class="help-block" th:if="${#fields.hasErrors('maxLoad')}"
th:errors="*{maxLoad}"></div>
</div>
</div>
<div th:object="${machine.client}">
<div th:class="${#fields.hasErrors('id')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="clientId">Wybrany klient:</label>
<div class="col-sm-8">
<span class="form-control-static" id="selectedClient">Nie wybrano! Wyszukaj po prawej</span>
<input type="hidden" th:field="${machine.client.id}" id="clientId" />
<div class="help-block" th:if="${#fields.hasErrors('id')}"
th:errors="${machine.client.id}"></div>
</div>
</div>
</div>
<div id="machineCar" th:object="${machine.car}">
<div th:class="${#fields.hasErrors('make')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="carMake">Marka pojazdu:*</label>
<div class="col-sm-8">
<input type="text"
class="form-control"
id="carMake"
placeholder="Podaj markę pojazdu"
th:field="*{make}"/>
<div class="help-block" th:if="${#fields.hasErrors('make')}"
th:errors="*{make}"></div>
</div>
</div>
<div th:class="${#fields.hasErrors('vin')}? 'form-group has-error has-feedback' : 'form-group'">
<label class="control-label col-sm-4" for="factoryNo">VIN:</label>
<div class="col-sm-8">
<input type="number"
class="form-control"
id="vin"
placeholder="Podaj numer VIN"
th:field="*{vin}"/>
<div class="help-block" th:if="${#fields.hasErrors('vin')}"
th:errors="*{vin}"></div>
</div>
</div>
</div>
<div class="form-group">
<div class="col-xs-12">
<button type="submit" class="btn btn-primary">Zapisz dane</button>
</div>
</div>
</form>
最佳答案
尝试添加
<input type="hidden" name="client.id" value="${client.id}" />
在 HTML 表单中,那些具有 id 值的客户端对象将被创建,然后将其余的留给存储库,它只需要 id 来关联记录。
关于java - Spring MVC + Thymeleaf - 保存关系@ManyToOne,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42270489/
问题:如何对文本文字中的多个连续下划线进行转义? 我正在为 HTML 使用标准的 Thymeleaf 方言(我不在这里使用 Spring 或 SpEL)。 在 Thymeleaf 中,我可以将下划线创
在 SaaS 应用程序中,我使用了一些模板来生成通知电子邮件或某些 HTML 页面。到目前为止,我没有使用 thymeleaf,而且所有模板都是硬编码的,但我很想改变它,以便应用程序的用户可以自己编辑
我看到JSP页面有.jsp/.jspf/.jspx后缀(来自 JavaServer Pages™ Specification Version2.2),Velocity 模板使用 .vm后缀,FreeM
我有一个像这样的 Thymeleaf 片段 ... 脚本部分我只想包含它一次,即使我会在页面中多次包含 f1 。实现这一目标最简单/最干净的方法是什么? 我什至可以将此片段拆
两个 Thymeleaf 属性有什么区别:th:include 和 th:replace? 最佳答案 根据documentation如果您遇到这种情况: content here 片段将被放置在
我是 Thymeleaf 初学者。我从一个通用布局页面开始: fragments/layout.html Template title Some text
我有两个数组,我想在同一个表(不同的列)中显示其内容。如何使用 index 或 th:each 遍历数组 这是我想要实现的目标 List1Elm1 List
我在 session 中有一个对象,例如一个部门,这个部门有 child 。我得到了它的 child 的列表,现在我想在这个列表中添加这个部门对象。这在服务器端非常简单,但可以做到这个在 thymel
我的 Thymeleaf 页面中有几个下拉列表,如下所示: 当我查看页面时,列表中的第一个值显示为已选中,并且实际上已作为选中值提交,即使它不是手动选中的。我宁愿默认不选择任
我有一个通用的布局,默认情况下,除已包含(更高级的)搜索表单的搜索页面本身之外,每个页面上均应显示(基本)搜索表单。 是否可以将参数从我的搜索页面传递到版式,以便不显示默认搜索表单? 这是我想做的一个
我有一个 User 对象列表,我想将它转换为一个名称列表,加入它并呈现它(不是在表格中)。我该怎么做? class User { String name; String address; }
我在前端使用thymeleaf,我知道variable中的thymeleaf概念 如果我使用th:text,变量中的值将被打印,并且我可以在同一元素中使用该变量。有没有办法在其他元素中使用var呢?
我知道 Thymeleaf 是为渲染 View 而制作的,但是我只是想知道是否有任何方法可以在 Thymeleaf 片段的请求范围内设置变量? 我有一个非常大的条件表达式,我必须在整个应用程序中重复很
假设我有两个 Thymeleaf 模板: index.html : foo bar 片段/main.html : This is the main cont
我想声明一些布局用作所有表单字段的模板。 大致给出这个片段 Edition description 这个片段“调用” 它将产生
在 Thymeleaf 中实现 Markdown 的最佳方式是什么? 模板模式 一种新的方言(什么处理器?) 如果我可以在 HTML 中嵌入 markdown,那将会很有用。 最佳答案 根据我对 Ja
我想使用模板片段创建最多包含三个项目的列表。无论是否有项目,项目都会显示三个空格,因此看起来像这样。 0}" th:insert="code-block :: block(${bloc
如何从 Thymeleaf 重定向页面(我有如下 JSP 代码) out.println("REDIRECT=http://www.example.com/api/response?id="+id)
我想在 Thymeleaf 的字符串中放置双引号,我有以下形式: 我想要的结果是: Value of "apple" is "1.5". 但我得到以下异常: EL1065E: unexpected
我想使用模板片段创建最多包含三个项目的列表。无论是否有项目,项目都会显示三个空格,因此看起来像这样。 0}" th:insert="code-block :: block(${bloc
我是一名优秀的程序员,十分优秀!