目录
需求分析
Freemarker概述
测试环境搭建
Freemarker基础语法种类
集合指令LIst
集合指令MAP
IF指令
运算符
空值处理
内建函数
输出静态化文件
java
@SpringBootTest(classes = FreemarkerDemoApplication.class)
@RunWith(SpringRunner.class)
public class FreemarkerTest {
@Autowired
private Configuration configuration;
@Test
public void test() throws IOException, TemplateException {
Template template = configuration.getTemplate("02-list.ftl");
// 合成方法
// 两个参数 模型数据 输出流
template.process(getData(), new FileWriter("D:/list.html"));
}
private Map getData(){
Map<String, Object> map = new HashMap<>();
//------------------------------------
Student stu1 = new Student();
stu1.setName("小强");
stu1.setAge(18);
stu1.setMoney(1000.86f);
stu1.setBirthday(new Date());
//小红对象模型 数据
Student stu2 = new Student();
stu2.setName("小红");
stu2.setMoney(200.1f);
stu2.setAge(19);
//将两个对象模型数据存放到List集合中
List<Student> stus = new ArrayList<>();
stus.add(stu1);
stus.add(stu2);
//向model中存放List集合数据
// model.addAttribute("stus",stus);
map.put("stus", stus);
//------------------------------------
//创建Map数据
HashMap<String,Student> stuMap = new HashMap<>();
stuMap.put("stu1",stu1);
stuMap.put("stu2",stu2);
// 3.1 向model中存放Map数据
// model.addAttribute("stuMap", stuMap);
map.put("stuMap", stuMap);
return map;
}
}