春季启动与Thymeleaf帖子列表

时间:2017-02-20 09:40:20

标签: spring-mvc spring-boot thymeleaf

我想将一个字符串列表发布到我的控制器。 但它始终只取第一个选定值。

my thymeleaf html表格:

<form action="/add" method="post">
    <div class="form-group">
        <label for="roleId">ID</label> <input type="text" class="form-control" id="roleId" name="id" required="required" />
    </div>
    <div class="form-group">
        <label for="rolePrivileges">Privileges</label>
        <select class="form-control" id="rolePrivileges" name="privileges" multiple="multiple" size="10" required="required">
            <option th:each="type : ${privilegesList}" th:value="${type}" th:text="${type}">Privilege</option>
        </select>
    </div>
    <button type="submit" class="btn btn-default">Create</button>
</form>

我的控制员:

@RequestMapping(value = "/add", method = RequestMethod.POST)
public String addSomething(Model model, @ModelAttribute("id") String id,
        @ModelAttribute("privileges") List<String> privileges) {
    // add something with a service
    return "redirect:/roles";
}

1 个答案:

答案 0 :(得分:5)

我认为你必须用

注释特权
@RequestParam("privileges")

它不是ModelAttribute,但是您从请求

接收它

修改:两个SO主题,以便更好地理解@RequestParam@ModelAttribute之间的区别。