在引入thymeleaf后@RequestMapping("访问路径")与@ResponseBody不能一起使用,否则返回的就是ruturn中的数据,而不是你事先存好要在页面返回的数据了。只需要加@RequestMapping("访问路径")就行
加入 @ResponseBody后返回的就是return 中返回的test了。