spring boot使用freemarker页面获取系统路径最简配置

1、配置application.properties(最后一句起作用,前面凑数的)

spring.freemarker.template-loader-path=classpath:/templates/
spring.freemarker.suffix=.ftl
spring.freemarker.cache=false
spring.freemarker.charset=utf-8
spring.freemarker.request-context-attribute=request

2、页面获取方式: ${request.contextPath}

 

 3、完事,简单吧

你可能感兴趣的:(spring boot使用freemarker页面获取系统路径最简配置)