如果我从pom.xml中删除spring-boot-starter-thymeleaf,那么我的@GetMapping无法返回html页面。[enter image description here](https://i.stack.imgur.com/NJvOn.png)
我试过:
- add @ResponseBody -不工作(他的返回字符串在网站中,而不是html页面)
1.将@Controller替换为@RestControllerin -不工作
1.使用ModelAndView -不工作(modelAndView.setViewName(“index”或“index.html”或“static/index.html”或...)
1条答案
按热度按时间eh57zj3b1#
因为浏览器会读取你的响应头“Content-Type”来决定如何显示内容。所以你需要将内容类型指定为html。