一、在resource目录下面建立文件夹,里面方静态页面。

路径:src\main\resources\static\page\index.html

访问:http://localhost:8080/page/index.html

注意:后缀一定要html或者htm,否则打不开。

二、Spring Controller返回页面

访问:http://localhost:8080/index

注意:前端不能获取后台传递值,因为html不支持EL表达式。jsp或者模板引擎才支持

@Controller
public class HelloController {

    @RequestMapping("/index")
    public String index(){
        System.out.println("coming......");
        return "page/index.html";
    }
    
    @RequestMapping("/index2")
    public ModelAndView index2(ModelAndView modelAndView){
        System.out.println("coming......");
        modelAndView.addObject("name","tom");
        modelAndView.setViewName("page/index.html");
        return modelAndView;
    }
    
}

 

相关文章:

  • 2021-07-08
  • 2022-12-23
  • 2021-11-20
  • 2021-11-08
  • 2022-12-23
  • 2021-10-19
  • 2021-11-24
猜你喜欢
  • 2021-10-19
  • 2021-11-17
  • 2021-06-09
  • 2021-11-21
  • 2022-12-23
  • 2022-12-23
  • 2021-11-10
相关资源
相似解决方案