Velocity与Spring的普通servlet 如何整合?
项目中使用了Spring,并没有使用Spring的MVC。而是采用了普通的Servlet作为借口,并通过以下代码使Servlet可以使用Spring中的bean。
@Override public void init(ServletConfig config) throws ServletException { SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this, config.getServletContext()); }
现在我想整合Velocity进来
如果Servlet继承org.apache.velocity.tools.view.VelocityLayoutServlet时,发现调用此Servlet时会报NullPointException。
有没有什么办法可以整合进来?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对,用Spring MVC就行