spring boot return string instead of .html file

后端 未结 4 2026
无人共我
无人共我 2021-02-15 10:59

I tried to run spring boot application, that will return me the HTML static file on the static folder, the problem was: every time I load the page: 127.0.0.1 I get the String \"

4条回答
  •  悲&欢浪女
    2021-02-15 11:27

    I had this same problem. There was no way to return an html just by returning a String with the name of the html file. For me, it only worked using ModelAndView, in your case it would look like this:

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

    Some people say that problems like this occurs because the jdk version. I use jdk14.

提交回复
热议问题