22.springboot freemarker -thymeleaf

1,添加jar



org.springframework.boot
spring-boot-starter-thymeleaf

2,在 项目 src\main\resources\templates 下新建 login.html

3,在controller层跳转页面‘

@Controller    //注意这里只能controller    不能RestController
@RequestMapping(value="/index")
public class IndexController {
   @RequestMapping(value="/aa",method= RequestMethod.GET)
       public  String test(HttpServletRequest request) {
        //逻辑处理
      request.setAttribute("key", "hello world"); //向前台传参
        return "login";  //跳转到页面
    }
}

4,前台接受传参


  themplates模板

  [[${key}]]     //接受的值


5,tmpl的html 读取静态配置的路径
![IMG_20190219_112736406.jpg](https://upload-images.jianshu.io/upload_images/12197462-9a7170a0e36221ca.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)




这2 个方法都可以.因为layui在webapp下面 所以 去掉 wabapp  换成 /  下面就写全路径    

你可能感兴趣的:(22.springboot freemarker -thymeleaf)