Spring Boot 返回Html界面

@Controller
public class HelloController {

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

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

posted @ 2017-08-06 20:37  liter7  阅读(846)  评论(0编辑  收藏  举报