使用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";

}
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM