如何从表单中选择集合中的实体? Spring MVC和Thymeleaf

时间:2015-01-14 22:33:50

标签: validation spring-mvc thymeleaf spring-validator

CompanyUser中有一些Set个实体,所有用户都存储在数据库中。我想在HTML表单中使用multiple-select选择一些用户。使用Thymeleaf和Spring(MVC,Boot)。

我完全迷失了我应该使用的东西。我已经尝试过@InitBinder,Spring Core Converter,但没有任何效果。 问题: @Controller在bindingResult.hasErrors()上失败:

@Controller

@RequestMapping(value = { "/add" }, method = { RequestMethod.POST })
public String saveNew(@Validated @ModelAttribute("company") Company company, BindingResult bindingResult, Model model) {
    if (bindingResult.hasErrors())

公司bean

public class Company {
    private Set<User> users = new HashSet<User>();

Thymeleaf HTML表单

<form th:object="${company}">
<select th:field="*{users}" multiple="multiple">
    <option th:each="user : ${allUsers}" th:value="${user.id}" th:text="${user.email}"></option>
</select>

如何实现这种多重选择的正确方法是什么?

1 个答案:

答案 0 :(得分:3)

您可以使用此代码

<form th:object="${company}">
<select th:field="*{users}" multiple="multiple">
    <option th:each="user : ${allUsers}" th:value="${{user}}" th:text="${user.email}"></option>
</select>

(在th:value中看起来是双{{}}。

现在你需要一个像这样的格式化程序:

@Component
public class UserFormatter implements Formatter<User> {

@Autowired
private UserService userService;

@Override
public Dia parse(String text, Locale locale) throws ParseException {
    return userService.findById(Long.valueOf(text));
}

@Override
public String print(User object, Locale locale) {
    return String.valueOf(object.getId());
}