在我目前的春季项目中,我有一个像这样的通用控制器:
public class basicController<E> {
@Autowired
private basicService<E> serv;
protected Class<?> clazz;
public basicController(Class<?> clazz) {
this.clazz = clazz;
}
...
}
用这样的方法:
@ModelAttribute("lista")
public List<E> populateList() {
return serv.lista();
}
我想知道是否可以在类似的结构中使用lista
的值(在html页面中):
<select class="form-control" th:name="...">
<option th:each="opt : ${lista}" th:value="${opt.getId()}"><span th:text="${opt}"/>
</option>
</select>
此页面使用以下方法映射到控制器中:
通用控制器
@RequestMapping(value = "cadastra")
@PreAuthorize("hasPermission(#user, 'cadastra_'+#this.this.name)")
@Menu(label = "cadastra")
public String cadastra(Model model) throws Exception {
model.addAttribute("command", serv.newObject());
return "private/cadastra";
}
家庭控制器(包含公共视图的映射,以及其他内容)
@RequestMapping(value = "/settings")
public String settings(Model model) throws Exception {
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
model.addAttribute("usuario", auth.getName());
model.addAttribute("menu", MenuList.index());
model.addAttribute("settings", MenuList.settings());
return "private/settings";
}
@RequestMapping(value = "/profile")
public String profile(Model model) throws Exception {
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
model.addAttribute("usuario", auth.getName());
model.addAttribute("menu", MenuList.index());
model.addAttribute("command", usuario(auth.getName()));
return "private/profile";
}
有人对此有任何想法吗?
答案 0 :(得分:1)
好的,我只是测试并验证使用ModelAttribute方法中的值不需要额外的配置。所以,我只是在我的控制器中添加这样的方法:
@ModelAttribute("lista")
public List<E> populateListPagina() {
return serv.lista();
}
@ModelAttribute("classe")
public String getName() {
return clazz.getSimpleName();
}
当我访问任何映射视图时,我可以按照我喜欢的方式使用此方法返回的值:
<tbody class="content">
<tr th:each="item : ${lista}">
<th></th>
<th th:each="coluna : ${campos}" th:text="${item[coluna]}"></th>
<th>
<div class="btn-group" role="group" aria-label="menu_item">
<button th:each="btn : ${menu_item}" type="button" class="btn btn-default link" th:attr="data-href=@{/__${classe}__/__${btn}__/__${item.getId()}__}" th:text="${btn}"></button>
</div>
</th>
</tr>
</tbody>
答案 1 :(得分:-1)
@ModelAttribute在你的控制器方法之前启动,并且一旦你的方法运行就会消失我相信。所以你不再拥有视图中的对象,它更像是一个@RequestParam。
但是,如果你正在使用更新版本的Spring(我相信4+),你可以尝试添加@SessionAttributes(&#34; lista&#34;)。您必须小心确保关闭会话属性。要结束,做那个人做的事 - link。