分类分类
更新时间:2026-02-25 18:16:23作者:小静
一、SpringBoot整合freemarker:
1.引入freemarker模板依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
<version>1.5.9.RELEASE</version>
</dependency>
2.配置application.properties:
#freemarker 静态资源配置
#设定ftl文件路径
spring.freemarker.template-loader-path=classpath:/templates
#关闭缓存,还是刷新,上线生产环境需要改为true
spring.freemarker.cache=false
spring.freemarker.charset=utf-8
spring.freemarker.check-template-location=true
spring.freemarker.content-type=text/html
spring.freemarker.expose-request-attributes=true
spring.freemarker.expose-session-attributes=true
spring.freemarker.request-context-attribute=request
spring.freemarker.suffix=.ftl
3.在resources目录下建个目录叫templates,在这个目录下新建一个以.ftl结尾的文件,并且将html代码复制进去,在controller层返回这个视图
二、SpringBoot整合thymeleaf
1.引入thymeleaf模板依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>1.5.9.RELEASE</version>
</dependency>
2.配置application.properties:
#thymeleaf静态资源配置
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#关闭缓存,即时刷新,上线生产环境需要改为true
spring.thymeleaf.cache=true
#thymeleaf静态资源配置
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#关闭缓存,即时刷新,上线生产环境需要改为true
spring.thymeleaf.cache=true
3.在resoureces下新建个目录templates在里面编写html文件,具体的thymeleaf标签语法这里就不做介绍了。
相关
scarfall2.0动作射击1.41Gv1.4.42026-02-25
下载小鹦看看app母婴育儿136.93 Mv3.6.22026-02-25
下载兔兔游记休闲益智187.35 Mv1.1.02026-02-25
下载孤独的村庄游戏角色扮演406.65 Mv1.6.222026-02-25
下载泡椒音乐app影音播放3.37 Mv1.02026-02-25
下载中公图书app母婴育儿187.88 Mv1.1.72026-02-25
下载荣煤宝app学习办公99.21 Mv2.2.752026-02-25
下载乐高忍者元素之战角色扮演886.57 Mv1.05.2.9702026-02-25
下载之了学吧app母婴育儿32.68 Mv1.6.52026-02-25
下载拳击俱乐部2手机版角色扮演26.92 Mv1.0.62026-02-25
下载云赏HIFI app实用工具54.02 Mv2.2.82026-02-25
下载元仔app(PawLove)社交通讯351.77 Mv1.9.22026-02-25
下载










