用springboot整合springmvc时Controller层无法跳转到thml页面

在用springboot时,Controller层用注解@RestController,然后一直无法return 到html页面。
后来才发现,Controller层要使用注解@Controller才可以让方法return到html页面
加@Controller之前:
用springboot整合springmvc时Controller层无法跳转到thml页面_第1张图片
加@Controller之后:还需要把@RestController去掉
用springboot整合springmvc时Controller层无法跳转到thml页面_第2张图片

你可能感兴趣的:(java)