Spring 3中的Velocity-Tools app - Linktool引起NPE,如何解决?

时间:2011-09-15 05:46:54

标签: apache spring-mvc nullpointerexception velocity

我正在使用修改后的VelocityToolboxView(在stackoverflow上找到somwhere)来使用Spring 3中的Velocity-Tools 2.0。 它看起来配置得很好,但是当我在.vm文件中调用$ link工具时,我得到了一个N​​PE。通过Velocity-Tools源扫描我发现它尝试使用ValueParser道具的请求和响应来配置工具,但它们在这里为空。

这里是堆栈:

LinkTool.configure(ValueParser) line: 100   
LinkTool(SafeConfig).configure(Map) line: 113   
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]  
NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39  
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25  
Method.invoke(Object, Object...) line: 597  
ToolInfo.invoke(Method, Object, Object) line: 363   
ToolInfo.configure(Object, Map<String,Object>) line: 294    
ToolInfo.create(Map<String,Object>) line: 255   
Toolbox.getFromInfo(String, String, Map<String,Object>) line: 152   
Toolbox.get(String, String, Map<String,Object>) line: 112   
ToolContext.findTool(String) line: 221  
ToolContext.get(String) line: 206   
VelocityContext(AbstractContext).get(String) line: 197  

当ValueParser此时需要在其地图中包含请求/响应值时,这通常是在哪里注入的,由谁注入?

这是我使用的视图类:

public class VelocityToolsView extends VelocityToolboxView
{

  private static ToolContext toolContext;

  @Override
  protected Context createVelocityContext(@SuppressWarnings("rawtypes") Map model,
      HttpServletRequest request, HttpServletResponse response) throws IOException
  {
    VelocityContext context = new VelocityContext(getToolContext());
    if (model != null)
    {
      @SuppressWarnings("unchecked")
      Set<Map.Entry<String, Object>> entrySet = model.entrySet();
      for (Map.Entry<String, Object> entry : entrySet)
      {
        context.put(entry.getKey(), entry.getValue());
      }
    }
    return context;
  }

  private ToolContext getToolContext() throws IllegalStateException, IOException
  {
    if (toolContext == null)
    {
      XmlFactoryConfiguration factoryConfiguration = new XmlFactoryConfiguration("Default Tools");
      factoryConfiguration.read(getServletContext()
          .getResourceAsStream(getToolboxConfigLocation()));
      ToolManager toolManager = new ToolManager();
      toolManager.configure(factoryConfiguration);
      toolContext = toolManager.createContext();
    }
    return toolContext;
  }

2 个答案:

答案 0 :(得分:1)

VelocityToolbox从5年前就被废弃了。我正在使用this technique将工具集成到Spring中。

答案 1 :(得分:0)

我也发现了这个问题,最终使用{serg's技术的this变体解决了这个问题。