//	@Token(CHECK_AND_SET)
 @DoValidation(
     v = {Validate.class},
     to = "/hello/hello.html")
 @RequestMapping("/input")
 public DoxModelAndView input(HelloForm form) {
   this.helloService.search(form);
   LOG.info("ログ出力テスト2, {}", form.getResults());
   addMessage(new AppMessage(INFO, "hello2", prop("val"), prop("samplemes")));
   return view("/hello/hello.html", form);
 }