springBoot整合freemarker

1、在pom.xml中注入freemarker依赖

springBoot整合freemarker_第1张图片

在springboot启动文件中配置

springBoot整合freemarker_第2张图片

这里的@SpringBootApplication可以替换成@EnableAutoConfiguration和@ComponentScan(basePackages=""),//如果扫描多个包用@ComponentScan(basePackages={" ",  " "})

重点:配置freemarker模板,在这里弄了半天,就是读不出来templates下面的ftl文件,正常情况下 文件上面应该有绿色的尖括号,但是因为我的全都是灰色的,也就是idea识别不出来.ftl文件,

打开设置.setting--->file types -->

 

springBoot整合freemarker_第3张图片

可以看到这里freemarker template默认的是*.ftlh和*.ftlx点击右边的+好,添加*.ftl,这样就可以识别.ftl文件了

整合freemarker就因为这个templates模板问题,浪费了我几个小时,[○・`Д´・ ○]生气

你可能感兴趣的:(框架,springboot,freemarker)