部分JSR303在Spring Webflow状态下进行组验证

时间:2013-01-24 00:04:41

标签: spring-mvc spring-webflow bean-validation hibernate-validator

我有一个实体,它有几个带有JSR303注释约束的字段。我希望用户分几步设置这些字段。我认为具有显式绑定属性的视图状态可以完成这项工作。

我通过将LocalValidatorFactoryBean设置为<webflow:flow-builder-services … validator="flowValidator"/>的验证器bean来启用JSR303验证。 hibernate-validator-5在类路径中。

@Configuration
@ImportResource("classpath:/flow.xml")
public class FlowConfiguration {
   @Bean LocalValidatorFactoryBean flowValidator() {
            return new LocalValidatorFactoryBean();
    }
}

这不能完成我需要的工作。使用启用的验证器,视图状态验证完整的实体,该实体因@NotNull约束而失败。虽然视图状态只有一个子集。

<view-state id="insertUser" view="registration/insertUser" model="vendor">
        <binder>
            <binding property="email" required="true" />
            <binding property="name"  required="true" />
        </binder>
  …
</view-state>

通过进一步阅读,我发现我在谈论JSR-303群。是否支持使用Spring Web流验证组?

1 个答案:

答案 0 :(得分:2)

SWF-1453表示它出现在SWF 2.4.0中,并且已经在最新的SNAPSHOT中提供。