在 Spring MVC 中将值设置为 NULL 而不是空字符串

Posted

技术标签:

【中文标题】在 Spring MVC 中将值设置为 NULL 而不是空字符串【英文标题】:Form values to be NULL instead of empty strings in Spring MVC 【发布时间】:2013-07-12 21:39:59 【问题描述】:

我正在使用 Spring MVC。我的页面上有一个表格。当我没有在表单中输入任何值并提交时,它带有空字符串""

是否可以设置null 值而不是空字符串?

提前感谢您的帮助。

【问题讨论】:

【参考方案1】:

您必须使用 @InitBinder 注释,因为在 Spring MVC 中,它总是为表单中的空白值返回 ""。您必须在控制器中添加它。

例子:

@InitBinder    /* Converts empty strings into null when a form is submitted */
public void initBinder(WebDataBinder binder)   
    binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));  

Source

【讨论】:

很好的答案。我可能会补充一点,您还可以指定要为其注册自定义编辑器的单个属性:binder.registerCustomEditor(String.class, "myproperty", new StringTrimmerEditor(true)); 没关系。但是当我将 ajax 请求发送到控制器时,我遇到了问题。我知道 @InitBinder 不适用于 ajax 请求。那么,我该如何解决这个问题。

以上是关于在 Spring MVC 中将值设置为 NULL 而不是空字符串的主要内容,如果未能解决你的问题,请参考以下文章

Spring MVC ModelAttribute 字段为 Null 而不是表单输入值

如何在 C# 中将 null 值设置为 int?

在 spring mvc 的模型属性中保留值

如何在 SQL Server Management Studio 中将列值设置为 NULL?

如何在mvc5中将文化设置为全局

在 C++ 中将结构指针设置为 null 时存储的值消失