使用Thymeleaf在前台无法显示页面问题

  controller中的代码如下:问题  返回值类型为@RestController时,直接转换为了json字符串,就无法返回thymeleaf页面,改为@Controller即可

@RestController
@RequestMapping("user")
public class UserController {

@Autowired
private UserService userService;

@GetMapping("all")
public String all(Model model) {
// 查询用户
List<User> users = this.userService.queryAll();
// 放入模型
model.addAttribute("users", users);
// 返回模板名称(就是classpath:/templates/目录下的html文件名)
return "users";

}
}
原文地址:https://www.cnblogs.com/zxq-Study-Java/p/9971962.html