How to serve static html content page in spring-boot

前端 未结 4 1543
孤独总比滥情好
孤独总比滥情好 2020-12-28 15:17

I\'m starting an embedded tomcat via spring-boot and want to serve a static index.html page as part of a running application.

But the follo

4条回答
  •  不思量自难忘°
    2020-12-28 15:37

    You can use ModelAndView in order to serve static HTML content in spring boot.

    @RequestMapping("/")
    public ModelAndView home()
    {
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("index");
        return modelAndView;
    }
    

    application.properties:-

    spring.mvc.view.suffix = .html

    HTML File : - src/main/resources/static/index.html

提交回复
热议问题