小编Ifi*_*Ifi的帖子

如何在Velocity Template中访问Session或Request对象

我试图在一些速度模板中访问HttpServletRequest但从未成功.我已经尝试过以下语法风格

当前URL:$ req.get("attributes").get("CURRENT_URL"))结果>当前URL:$ req.get("attributes").get("CURRENT_URL"))

当前URL:$ request.get("attributes").get("CURRENT_URL"))结果>当前URL:$ request.get("attributes").get("CURRENT_URL"))

当前URL:$ request.get("attributes").get("CURRENT_URL"))结果>当前URL:$ request.get("attributes").get("CURRENT_URL"))

当前网址:$ {request.get("attributes").get("CURRENT_URL"))}结果>当前网址:$ {request.get("attributes").get("CURRENT_URL"))}

注意:Web.xml看起来像

<!-- Processes application requests -->
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

<!-- Define Velocity template compiler -->
<servlet>
  <servlet-name>velocity</servlet-name>
  <servlet-class>
    org.apache.velocity.tools.view.servlet.VelocityViewServlet
  </servlet-class>

  <!-- 
   Unless you plan to put your toolbox.xml and velocity.properties
   under different folders or give them different names, then these
   two init-params are unnecessary as of VelocityTools 1.3.  The
   VelocityViewServlet will automatically look for these files in …
Run Code Online (Sandbox Code Playgroud)

java velocity spring-mvc

4
推荐指数
2
解决办法
1万
查看次数

标签 统计

java ×1

spring-mvc ×1

velocity ×1