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";
}
}