在Spring MVC中,可以使用注解`@ModelAttribute`和`@InitBinder`来隐藏字段值。下面是一种常见的方法:
1. 在控制器类中创建一个`initBinder()`方法,并用`@InitBinder`注解标记该方法,用于初始化绑定器。
@Controller public class MyController { @InitBinder protected void initBinder(WebDataBinder binder) { // 隐藏指定字段值 binder.setDisallowedFields("fieldName"); } // 其他处理方法... }
2. 在需要隐藏字段值的表单对象中,添加`@ModelAttribute`注解。
public class MyForm { private String fieldName; // getter 和 setter 方法 @ModelAttribute("fieldName") public String getFieldName() { return "hidden value"; } }
在上述代码中,`getFieldName()`方法被`@ModelAttribute`注解标记,并返回了需要隐藏的字段的值。当表单提交时,这个字段的值将被隐藏。
请注意,在使用`@ModelAttribute`注解时,要确保命名与表单对象的字段名称相匹配,以便正确隐藏字段的值。