如何在ftl或者html中获取绝对路径?
使用框架:springboot+freemarker
配置文件:spring.freemarker.request-context-attribute=ctx
模板文件关键语句:
${ctx!"我是空"}<br>
------
${ctx.getContextPath()!"我是空path"}<br>
结果:
org.springframework.web.servlet.support.RequestContext@33dd11e2
------
你这个已经可以取得RequestContext了,但是Freemarker还不支持使用函数本身的方法,只支持内建函数和自定义函数以及宏,所以你这个要获取这个路径必须通过自定义函数来实现。