Spring Boot 返回Html界面

@Controller
public class HelloController {

    @RequestMapping("/")
    public String index(){
        return "index";
    }
}

不能用@RequController,这样会把返回的当成字符串或Json数据。

原文地址:https://www.cnblogs.com/liter7/p/7295893.html