Spring MVC 3.0 注解 - 对话形式 - 初学者问题

发布于 2024-10-23 19:04:13 字数 376 浏览 0 评论 0原文

在 Spring 3.0 中如何执行以下操作? (我找到了这么多结果,我不确定哪个是正确的方法)

我想知道的是如何在“最佳实践”标准Spring 3.0注释方式中执行以下操作

  • 多页面表单 (如何使用@SessionAttributes
  • 表单上的多个提交按钮(我应该使用@RequestMapping(params={"btn1"}...) ?)
  • 表单字段到 bean 的自动绑定@InitBinder?必须使用“Spring”表单吗?)

How do you do the following in Spring 3.0? (I found so many results, I'm not sure which is the right way)

What I want to know is how to do the following in the "best practice" standart Spring 3.0 Annotation way

  • Multiple page form (How to use @SessionAttributes)
  • Multiple submit buttons on a form (should I use @RequestMapping(params={"btn1"}...) ?)
  • Automatic binding of form fields to beans (@InitBinder? must it use "Spring" forms?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

究竟谁懂我的在乎 2024-10-30 19:04:13
  • 多页面表单 - 看看 Spring Web Flow
  • 多个提交按钮 - @RequestMapping(params={"btn1"}...) 应该完成这项工作
  • 自动绑定 - 更好地使用 Spring 转换转换器 - (与 Binder 不同,它们是无状态的)
  • Multiple page form -- have a look at Spring Web Flow
  • Multiple submit buttons -- @RequestMapping(params={"btn1"}...) should do the job
  • Automatic binding -- better to use Spring Conversion with Converters - (they are stateless in difference to Binders)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文