1

抱歉问了这么简单的问题。我搜索了很多,但找不到确切的解决方案。

在我的 spring bean 类中,我有 int 字段,例如 (private int id) 。我用@NotEmpty了注解。

我需要在输入字段中只允许数字而不是任何字母或字符串。我需要使用什么注释。

我已经尝试了@NumberFormat(style = Style.NUMBER),@Digits(fraction = 0, integer = 5)注释,但没有任何结果。

请向我建议表单验证的解决方案或任何示例...

4

1 回答 1

0

建议您仔细阅读参考资料的相关部分。您创建实现 Validator 接口的验证器:

public class FooValidator implements Validator {

/**
* This Validator validates *just* Foo instances
*/
public boolean supports(Class clazz) {
    return Foo.class.equals(clazz);
}

public void validate(Object obj, Errors e) {
    ValidationUtils.rejectIfEmpty(e, "name", "name.empty");
    Foo foo = (Foo) obj;
    if (!isNumeric(foo.getFieldThatShouldBeNumeric())
    {
        e.rejectValue("fieldThatShouldBeNumeric", "notnumeric");
    }
}
}

然后将其“本地”注入控制器本身:

@Controller
public class MyController {

@InitBinder
protected void initBinder(WebDataBinder binder) {
    binder.setValidator(new FooValidator());
}

@RequestMapping("/foo", method=RequestMethod.POST)
public void processFoo(@Valid Foo foo) { ... }

或“全球”:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <mvc:annotation-driven validator="globalValidator"/>

</beans>
于 2013-01-18T11:32:17.690 回答