ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ @ModelAttribute public Account start(){ Account account=new Account(1,"LUCY","2018-12-12"); return account; } @RequestMapping("/testModelAttribute") public String testModelAttribute(Account account) { System.out.println(account); return SUCCESS; } //另一种指定为abc @ModelAttribute(value="abc") public Account start(){ Account account=new Account(1,"LUCY","2018-12-12"); return account; } @RequestMapping("/testModelAttribute") public String testModelAttribute(@ModelAttribute("abc") Account account) { System.out.println(account); return SUCCESS; } ~~~