SpringBoot(六)SpringBoot集成freemarker

第一步引入相应的依赖



org.springframework.boot
spring-boot-starter-freemarker

第二步编写后台

package com.zuojie.Controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class IndexController {
    @RequestMapping("/index")
    public String index(ModelMap map){
        map.addAttribute("name","小凡");
        return "index";


    }
}

第三步 在src/main/resources/创建一个templates文件夹,后缀为*.ftl (ftl的名字和return返回的文件名一样)

SpringBoot(六)SpringBoot集成freemarker_第1张图片

前端代码实现(代码写在ftl里面)








	  ${name}
 

第四步运行

SpringBoot(六)SpringBoot集成freemarker_第2张图片

你可能感兴趣的:(微服务)