zoukankan      html  css  js  c++  java
  • SpringBoot不使用模板引擎直接返回html

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

    路径:srcmain esourcesstaticpageindex.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;
        }
        
    }
  • 相关阅读:
    Hive
    Hadoop简介与分布式安装
    Hadoop分布式文件系统HDFS
    HDFS的操作SHELL和API
    HDFS高级功能
    Yarn
    Hadoop的I/O操作
    Hadoop的RPC工作原理
    Mapreduce入门和优化方案
    MapReduce的工作机制
  • 原文地址:https://www.cnblogs.com/chenweichu/p/9125936.html
Copyright © 2011-2022 走看看