Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
创建 Spring MVC 搜索表单的最佳实践是什么?
例如,可以按姓名、姓氏和类别搜索客户。
是否需要创建一个与搜索表单中使用的参数相同的类,然后将该类绑定到表单?
非常感谢你。
这是一种方式。如果您想在搜索表单的输入字段中以某种方式预定义值,那么使用此类(CommandObject / FormBackingBean)是一种好方法。
如果您不需要预定义字段,那么最简单的方法是访问请求参数“直接”:
@RequestMapping("search") public ModelAndView search(@RequestParam("searchTerm") String searchTerm)