Spring 如何在 @ModelAttribute 的 GET 请求中编码 POJO?
我有一个 Spring MVC 控制器,如下所示:
@RequestMapping("activityChart")
public ModelAndView activityChart(
@RequestParam(required=false, value="parent") String parent,
@RequestParam(required=false, value="expand") String[] expand,
@ModelAttribute PaginationArgs paginationargs) throws IOException {
// ... return template renderer
}
其中 PaginationArgs 是一个两字段 POJO。我想构造一个包含 paginationargs
值的 URL 字符串。对于 parent
和 expand
来说很容易 - activityChart?parent=foo&expand=bar&expand=baz
,但是正确的方法是什么对 POJO 的字段进行编码?
JSP 在 Spring 中使用
标记来处理此问题,但我们的项目没有使用 JSP,而是使用 Jamon。
I have a Spring MVC controller set up like so:
@RequestMapping("activityChart")
public ModelAndView activityChart(
@RequestParam(required=false, value="parent") String parent,
@RequestParam(required=false, value="expand") String[] expand,
@ModelAttribute PaginationArgs paginationargs) throws IOException {
// ... return template renderer
}
Where PaginationArgs is a two-field POJO. I want to construct a URL string that includes values for paginationargs
. It's easy to do for parent
and expand
- activityChart?parent=foo&expand=bar&expand=baz
, but what's the right way to encode a POJO's fields?
JSP takes care of this in Spring with a <form:form modelAttribute='paginationargs'>
tag, but our project isn't using JSP but Jamon instead.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在简单情况下,参数名称应与模型对象对应的字段名称相同。因此,如果
PaginationArgs
具有字段page
和size
,则类似于page=1&size=10
。在更复杂的情况下,Spring 可以接受其名称按照 5.4 Bean 操作和 BeanWrapper。
In the simple case parameter names should be the same as the corresponding field names of the model object. So, if
PaginationArgs
has fieldspage
andsize
, it would be likepage=1&size=10
.In more complex cases Spring can accept parameters whose names are formed as described in 5.4 Bean manipulation and the BeanWrapper.