SpringBoot整合Freemaker

1、pom文件添加依赖

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-freemarkerartifactId>
            <version>1.4.1.RELEASEversion>
        dependency>

2、新建spring web项目,会自动生成application.properties.

使用application.properties配置文件之后,spring boot启动时,会自动把配置信息读取到spring容器中,并覆盖spring boot的默认配置。

3、在配置文件中,设置以下两个参数

#设定ftl文件路径
spring.freemarker.template-loader-path=classpath:/templates
#设定静态文件路径,js,css
spring.mvc.static-path-pattern=/static/**
controller跳转页面如下:
templates/action/list.ftl页面

 SpringBoot整合Freemaker_第1张图片

你可能感兴趣的:(IDEA,SpringBoot)