我有一个实体,它有几个带有 JSR303 注释约束的字段。我希望用户分几个步骤设置这些字段。我认为具有显式绑定属性的视图状态可以完成这项工作。
我通过将 LocalValidatorFactoryBean 设置为<webflow:flow-builder-services … validator="flowValidator"/>
. 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 流验证组?