如何在 spring 中获取 freemaker 模板中的请求上下文

发布于 08-02 04:01 字数 677 浏览 8 评论 0原文

spring一起使用时如何获取freemarker模板中的请求上下文路径?

我的视图解析器是这样的

    <bean id="freeMarkerViewResolver" class="learn.common.web.view.FreemarkerViewResolver">
        <property name="order" value="1" />
        <property name="viewClass"
        value="org.springframework.web.servlet.view.freemarker.FreeMarkerView" />
        <property name="suffix" value=".ftl" />
        <property name="cache" value="false" />
    </bean>

我的视图解析器 learn.common.web.view.FreemarkerViewResolver 扩展 org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver

How to get the request context path in freemarker template when using with spring?

My view resolver is like this

    <bean id="freeMarkerViewResolver" class="learn.common.web.view.FreemarkerViewResolver">
        <property name="order" value="1" />
        <property name="viewClass"
        value="org.springframework.web.servlet.view.freemarker.FreeMarkerView" />
        <property name="suffix" value=".ftl" />
        <property name="cache" value="false" />
    </bean>

My view resolver learn.common.web.view.FreemarkerViewResolver extends org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海风掠过北极光2024-08-09 04:01:20

在您的视图解析器中,您可以添加以下属性

<property name="requestContextAttribute" value="rc"/>

然后在您的 freemarker 模板中,您可以获得请求上下文补丁,例如

${rc.getContextPath()}

In your view resolver you can add the following property

<property name="requestContextAttribute" value="rc"/>

Then in your freemarker template you can get the request context patch like

${rc.getContextPath()}
油焖大侠2024-08-09 04:01:20

如果您的要求是在 FTL 视图中获取上下文路径,那么 Spring 提供了更好的替代方案 -
首先在你的视图中导入 spring.ftl

<#import "/spring.ftl" as spring />

然后使用宏 @spring.url 作为你想要上下文感知的 URL -

<li id="history"><a href="<@spring.url '/rest/server/taskHistory'/>">History</a></li>

这非常类似于 -

<li id="history"><a href="${rc.getContextPath()}/rest/server/taskHistory">History</a></li>

中定义

其中 rc 在基于 viewResolver XML 的配置

<property name="requestContextAttribute" value="rc"/>

或 Spring Boot 样式配置( aplication.xml ) 。 yml)

spring.freemarker.request-context-attribute: rc

If your requirement is to fetch the Context Path in your FTL view then Spring provides a better alternate -
First import spring.ftl in your view

<#import "/spring.ftl" as spring />

Then use macro @spring.url for the URL which you want to make context aware -

<li id="history"><a href="<@spring.url '/rest/server/taskHistory'/>">History</a></li>

This is very much similar to -

<li id="history"><a href="${rc.getContextPath()}/rest/server/taskHistory">History</a></li>

Where rc is defined in viewResolver

XML based configuration

<property name="requestContextAttribute" value="rc"/>

or Spring Boot style configuration (aplication.yml)

spring.freemarker.request-context-attribute: rc
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文