spring mvc 4 + velocity 以及自定义tools

最近的项目中用到了spring mvc 版本为 4.1.6.RELAESE

而velocity-tools也被我2B的升级成了 2.0了。

------------------------------

其中mvc 3版本以上需要自定义 viewClass以完成 velocity tools的装载,不然报错

这一步,网上已经有人share出来方法了:


<bean id="velocityViewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
   <!--<property name="viewClass" value="org.springframework.web.servlet.view.velocity.VelocityView"/>-->
   <property name="viewClass" value="com.*.*.utils.VelocityToolView" />
   <property name="prefix" value="/"/>
   <property name="suffix" value=".vm"/>
   <property name="contentType" value="text/html;charset=UTF-8"/>
   <property name="toolboxConfigLocation" value="/WEB-INF/toolbox.xml"/>
</bean>

其中代码大致如下:

VelocityToolView VelocityToolboxView {
    Context (Map<StringObject> modelHttpServletRequest requestHttpServletResponse response) Exception {ViewToolContext ctxctx = ViewToolContext(getVelocityEngine()requestresponsegetServletContext())ctx.putAll(model)(.getToolboxConfigLocation() != ) {
            ToolManager tm = ToolManager()tm.setVelocityEngine(getVelocityEngine())tm.configure(getServletContext().getRealPath(getToolboxConfigLocation()))(tm.getToolboxFactory().hasTools(Scope.)) {
                ctx.addToolbox(tm.getToolboxFactory().createToolbox(Scope.))}
            (tm.getToolboxFactory().hasTools(Scope.)) {
                ctx.addToolbox(tm.getToolboxFactory().createToolbox(Scope.))}
            (tm.getToolboxFactory().hasTools(Scope.)) {
                ctx.addToolbox(tm.getToolboxFactory().createToolbox(Scope.))}
        }
        ctx}
}


而我还有一个增加自定义toolbox的需求,

但是像模像样的贴了一个从网上拷贝过来的 toolbox.xml在项目中却发现:

<toolbox>

    <!-- [ DateTool ]
         @see http://www.jajakarta.org/velocity/tools/velocity-tools-1.1/docs-ja/generic/DateTool.html  (ja)
        @see http://velocity.apache.org/tools/devel/javadoc/org/apache/velocity/tools/generic/DateTool.html  (en)
        @since VelocityTools 1.0
    -->
    <tool>
        <key>jsonUtils</key>
        <scope>application</scope>
        <class>org.*.JsonUtils</class>
    </tool>
</toolbox>

mvc 跳转到vm中的展示,不识别 jsonUtils, 


无奈,跟踪进去

            ToolManager tm = ToolManager()

代码发现,原来2.0的 toolbox配置方式 已经换成了另外的形式了。

参考 velocity-tools2.jar/org.apache.velocity.tools.generic.tools.xml 里面的格式,就会发现。原来toolbox的定义方法发生了变化。

<?xml version="1.0" encoding="ISO-8859-1"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
-->

<tools>
   <toolbox scope="application">
       <tool class="com.*.utils.VelocityJsonUtils"/>
   </toolbox>
</tools>

重新定义一下tools的配置,功能就正常了。

而关于toolbox的名字则用注解的方式

()

解决了


碰到问题网上的解决方案也许比较多的在说明前一个版本如何解决问题,对于自己的问题,需要静下心来看看别人的源码实现,一切就豁然开朗了。 


转载于:https://my.oschina.net/passionke/blog/490795

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值