SpringBoot 个人笔记-加载静态资源-freemarker简单使用

静态资源加载位置classpath 下的META-INF/resources、public、resources、static这四个包下

通过http://localhost:8080/jietua.png访问

SpringBoot 个人笔记-加载静态资源-freemarker简单使用_第1张图片

 简单整合freemarker

        
            org.springframework.boot
            spring-boot-starter-freemarker
        
@Controller
public class FtlTest {

    @RequestMapping("/name")
    public String name(Map map){
        map.put("name","灰猫");
        map.put("age",26);
        map.put("sex",0);
        return "freemarker";
    }
}

SpringBoot 个人笔记-加载静态资源-freemarker简单使用_第2张图片

你就是个小白菜!!
名字:${name}
年龄:${age}
性别:<#if sex=0> 男 <#else > 女  

 

 

 

 

你可能感兴趣的:(spring,boot)