有沒有辦法在不使用Hibernate的情況下自動驗證Spring 3.0中的傳入模型:? 我有實現Validator接口的CustomValidator,我想叫,因爲我指定每個方法的CustomValidator,如:Spring 3.0驗證而不休眠
@Controller
@RequestMapping("/*")
public class MyController {
@RequestMapping(value = "/edit/{entryId}", method = RequestMethod.POST)
protected String editEntry(@PathVariable int entryId, Guestbook guestbook) {
// Validate Guestbook against CustomValidator
}
}
謝謝!但是,如何使用Controller方法註冊我的Validator? – doque
所有你需要的einfo在這裏http://static.springsource.org/spring/docs/3.2.x/spring-framework-reference/html/validation.html#validation-beanvalidation – NimChimpsky
它看起來不像它。我宣佈確認Bean的是這樣的: 的 然而,我不能訪問任何\ @Min的,\ @NotNull等註釋。 –
doque