首页 > 代码库 > Spring Boot 返回Html界面

Spring Boot 返回Html界面

@Controller
public class HelloController {

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

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

Spring Boot 返回Html界面