Spring Boot如何整合FreeMarker模板引擎
POM
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-freemarker
项目结构
src/ +-main/ +-java/ |+-com |+-controller/ ||+-IndexController.class |+-Application.class +-resources/ +-templates/ +-index.ftlh
- Application为应用程序启动类
- IndexController为控制器,里面含有一个index请求处理方法,它返回index字符串,表示渲染模板文件index.ftlh。
- index.ftlh为freemarker模板文件
Applciation.class
@SpringBootApplication
publicclassApplication{
publicstaticvoidmain(String[]args){
SpringApplication.run(Application.class,args);
}
}
IndexController.class
@Controller
publicclassIndexController{
@GetMapping("/index")
publicStringindex(Modelmodel){
model.addAttribute("name","Alice");
return"index";
}
}
注意@ResponseBody注解不能和freemarker一起使用,所以此处不能标注@RestController注解。
index.ftlh
test hello${name}!
运行
运行Application类里的main方法。
然后访问localhost:8080/index,结果展示为:
helloAlice!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
热门推荐
10 酒桌升学祝福语简短
11 上嫂子生日祝福语简短
12 老公开业祝福语简短
13 生女儿的祝福语简短
14 许愿星姐妹祝福语简短
15 身体康复的祝福语简短
16 高考送考祝福语简短
17 给老师祝福语简短创意
18 青春告白祖国简短祝福语