码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot不使用模板引擎直接返回html

时间:2018-06-02 17:42:08      阅读:1224      评论:0      收藏:0      [点我收藏+]

标签:string   color   使用   传递值   pre   str   res   获取   支持   

一、在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;
    }
    
}

 

SpringBoot不使用模板引擎直接返回html

标签:string   color   使用   传递值   pre   str   res   获取   支持   

原文地址:https://www.cnblogs.com/chenweichu/p/9125936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!